Skip to content

Commit

Permalink
brand new home screen (#42)
Browse files Browse the repository at this point in the history
* brand new home screen

* fix typo

* change to card views

* center text inside cards

* fix navigation not working

* increase paddings

* fixed unresolved refs
  • Loading branch information
shalva97 committed May 8, 2022
1 parent 518a30c commit d01c18b
Show file tree
Hide file tree
Showing 10 changed files with 160 additions and 27 deletions.
4 changes: 2 additions & 2 deletions testomania/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {

defaultConfig {
applicationId "com.earth.testomania"
minSdk 21
minSdk 23
targetSdk 31
versionCode 1
versionName "1.0"
Expand Down Expand Up @@ -89,7 +89,7 @@ dependencies {
implementation 'io.github.raamcosta.compose-destinations:core:1.4.3-beta'
implementation 'io.github.raamcosta.compose-destinations:animations-core:1.4.3-beta'
ksp 'io.github.raamcosta.compose-destinations:ksp:1.4.3-beta'

implementation "kiwi.orbit.compose:ui:0.13.0"

// Coroutines
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0'
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package com.earth.testomania.presentation.dummy

import androidx.compose.material.Text
import androidx.compose.runtime.Composable
import com.ramcosta.composedestinations.annotation.Destination

@Destination(route = "home/dummy")
@Composable
fun DummyScreen() {
Text(text = "hello empty screen")
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package com.earth.testomania.presentation.home

import androidx.annotation.DrawableRes
import androidx.annotation.StringRes
import com.earth.testomania.destinations.DirectionDestination

data class HomeDestinations(
@StringRes val name: Int,
@DrawableRes val icon: Int,
val destination: DirectionDestination,
)
Original file line number Diff line number Diff line change
@@ -1,46 +1,67 @@
package com.earth.testomania.presentation.home

import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.padding
import androidx.compose.material.Button
import androidx.compose.foundation.ExperimentalFoundationApi
import androidx.compose.foundation.Image
import androidx.compose.foundation.layout.*
import androidx.compose.foundation.lazy.GridCells
import androidx.compose.foundation.lazy.LazyVerticalGrid
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import com.earth.testomania.R
import com.earth.testomania.destinations.SkillzTestScreenDestination
import androidx.hilt.navigation.compose.hiltViewModel
import com.ramcosta.composedestinations.annotation.Destination
import com.ramcosta.composedestinations.navigation.DestinationsNavigator
import kiwi.orbit.compose.ui.controls.Card

@Preview(showSystemUi = true)
@Destination(
route = "home",
start = true
)
@Preview
@Composable
fun HomeScreen(
navigator: DestinationsNavigator? = null,
) {
Column(Modifier.padding(start = 22.dp)) {
Button(
onClick = {
navigator?.navigate(SkillzTestScreenDestination())
}) {
Text(text = stringResource(id = R.string.general_skills_tests))
}
Button(
onClick = {

}) {
Text(text = stringResource(id = R.string.driving_license_tests))
val viewModel: HomeScreenViewModel = hiltViewModel()


val contentPadding = 20.dp
@OptIn(ExperimentalFoundationApi::class)
LazyVerticalGrid(cells = GridCells.Fixed(2),
contentPadding = PaddingValues(contentPadding),
horizontalArrangement = Arrangement.spacedBy(contentPadding),
verticalArrangement = Arrangement.spacedBy(contentPadding)) {
items(viewModel.destinations.size) { index ->
val item = viewModel.destinations[index]
CardButton(item, navigator)
}
Button(
onClick = {
}
}

@Composable
fun CardButton(
destinationInfo: HomeDestinations,
navigator: DestinationsNavigator? = null,
) {
Card(modifier = Modifier.size(125.dp), shape = RoundedCornerShape(10.dp), onClick = {
navigator?.navigate(destinationInfo.destination)
}) {
Column(Modifier.padding(10.dp), horizontalAlignment = Alignment.CenterHorizontally) {
Image(painter = painterResource(id = destinationInfo.icon),
modifier = Modifier.size(40.dp),
contentDescription = null)
Box(modifier = Modifier.fillMaxSize(), contentAlignment = Alignment.Center) {
Text(text = stringResource(id = destinationInfo.name), textAlign = TextAlign.Center)
}

}) {
Text(text = stringResource(id = R.string.geography_tests))
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
package com.earth.testomania.presentation.home

import androidx.lifecycle.ViewModel
import com.earth.testomania.R
import com.earth.testomania.destinations.DummyScreenDestination
import com.earth.testomania.destinations.SkillzTestScreenDestination
import dagger.hilt.android.lifecycle.HiltViewModel
import javax.inject.Inject

@HiltViewModel
class HomeScreenViewModel @Inject constructor(

) : ViewModel() {
val destinations = listOf(
HomeDestinations(
name = R.string.general_skills_tests,
icon = R.drawable.ic_math,
destination = SkillzTestScreenDestination
),
HomeDestinations(
name = R.string.geography_tests,
icon = R.drawable.ic_geo,
destination = DummyScreenDestination
),
HomeDestinations(
name = R.string.driving_license_tests,
icon = R.drawable.ic_driver_license,
destination = DummyScreenDestination
)
)
}
15 changes: 15 additions & 0 deletions testomania/src/main/res/drawable/ic_driver_license.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="512.085dp"
android:height="512.085dp"
android:viewportWidth="512.085"
android:viewportHeight="512.085">
<path
android:fillColor="#FF000000"
android:pathData="M512,53.376c0,-29.419 -23.915,-53.333 -53.333,-53.333H53.333C23.915,0.043 0,23.957 0,53.376v10.667h512V53.376z" />
<path
android:fillColor="#FF000000"
android:pathData="M512,341.376c0,-8.917 -6.635,-15.147 -16.128,-15.147c-5.355,0 -14.528,2.752 -22.421,7.296c-10.453,-22.016 -27.52,-41.536 -39.723,-47.616c-8.085,-4.032 -35.627,-8.533 -60.395,-8.533c-24.768,0 -52.309,4.501 -60.416,8.533c-12.181,6.08 -29.248,25.6 -39.701,47.616c-7.915,-4.544 -17.088,-7.296 -22.421,-7.296c-4.053,0 -7.552,1.067 -10.325,3.157c-3.712,2.795 -5.76,7.04 -5.76,11.989c0,16.64 12.907,28.181 14.4,29.44c1.195,1.024 2.56,1.643 3.968,2.048c-1.344,3.84 -2.539,7.744 -3.499,11.627c31.253,1.6 70.464,8.235 70.464,31.552c0,5.888 -4.779,10.667 -10.667,10.667s-10.667,-4.779 -10.667,-10.667c-3.2,-4.203 -26.987,-8.981 -52.757,-10.304c-0.32,3.605 -0.576,7.211 -0.576,10.304c0,15.936 1.472,43.115 10.667,57.003v17.664c0,11.968 9.365,21.333 21.333,21.333h21.333c11.968,0 21.333,-9.365 21.333,-21.333v-7.232c12.885,3.221 32.981,7.232 53.333,7.232c20.352,0 40.448,-4.011 53.333,-7.232v7.232c0,11.968 9.365,21.333 21.333,21.333h21.333c11.968,0 21.333,-9.365 21.333,-21.333v-17.664c9.195,-13.888 10.667,-41.067 10.667,-57.003c0,-3.115 -0.256,-6.699 -0.576,-10.304c-25.792,1.344 -49.6,6.272 -53.035,11.371c0,5.888 -4.651,10.155 -10.517,10.155c-5.888,0 -10.539,-5.312 -10.539,-11.2c0,-23.296 39.211,-29.931 70.464,-31.552c-0.96,-3.904 -2.176,-7.787 -3.499,-11.627c1.408,-0.405 2.773,-1.024 3.968,-2.048C499.093,369.557 512,358.016 512,341.376zM394.667,426.709H352c-5.888,0 -10.667,-4.779 -10.667,-10.667c0,-5.888 4.779,-10.667 10.667,-10.667h42.667c5.888,0 10.667,4.779 10.667,10.667C405.333,421.931 400.555,426.709 394.667,426.709zM451.264,356.416c-0.043,0 -0.085,0 -0.107,0.021c-4.288,0.469 -8.725,0.917 -13.184,1.387c-0.555,0.064 -1.088,0.107 -1.643,0.171c-4.565,0.469 -9.173,0.917 -13.717,1.344c-1.173,0.107 -2.304,0.213 -3.456,0.32c-3.349,0.32 -6.656,0.619 -9.899,0.896c-1.472,0.128 -2.88,0.235 -4.309,0.363c-2.859,0.235 -5.611,0.448 -8.299,0.661c-1.408,0.107 -2.795,0.213 -4.139,0.299c-2.603,0.171 -5.013,0.32 -7.36,0.448c-1.109,0.064 -2.304,0.128 -3.328,0.171c-3.179,0.149 -6.101,0.235 -8.491,0.235c-2.389,0 -5.291,-0.085 -8.491,-0.235c-1.045,-0.043 -2.219,-0.128 -3.328,-0.171c-2.347,-0.128 -4.757,-0.256 -7.36,-0.448c-1.344,-0.085 -2.709,-0.192 -4.117,-0.299c-2.688,-0.192 -5.44,-0.405 -8.32,-0.661c-1.429,-0.128 -2.837,-0.235 -4.309,-0.363c-3.221,-0.277 -6.549,-0.576 -9.899,-0.896c-1.152,-0.107 -2.283,-0.213 -3.456,-0.32c-4.544,-0.427 -9.152,-0.896 -13.717,-1.344c-0.555,-0.064 -1.088,-0.107 -1.621,-0.171c-7.381,-0.747 -14.507,-1.515 -21.312,-2.261c0.064,-0.171 0.107,-0.299 0.171,-0.469c7.083,-23.787 26.624,-45.952 34.859,-50.069c3.989,-1.835 26.731,-6.315 50.901,-6.315s46.933,4.48 50.88,6.293c8.277,4.117 27.819,26.283 34.901,50.091c0.064,0.171 0.107,0.299 0.171,0.469C456.64,355.84 454.037,356.139 451.264,356.416z" />
<path
android:fillColor="#FF000000"
android:pathData="M0.085,85.376v245.333H0.021c0,29.419 23.915,53.333 53.333,53.333h158.251c5.888,0 10.667,-4.779 10.667,-10.667c0,-2.816 -1.088,-5.376 -2.859,-7.275c-4.096,-8.128 -6.08,-16.235 -6.08,-24.725h-160c-5.888,0 -10.667,-4.779 -10.667,-10.667c0,-26.752 18.133,-49.963 44.053,-56.448l28.565,-7.125c-19.627,-4.416 -29.824,-10.432 -30.357,-10.752c-3.051,-1.835 -4.971,-5.056 -5.141,-8.597c-0.192,-3.541 1.387,-6.933 4.245,-9.067c-0.043,0 14.272,-12.907 14.272,-56.427c0.021,-56.533 42.347,-75.584 61.696,-75.584c13.739,0 20.203,2.773 27.456,9.28h0.384c22.464,0 33.856,22.315 33.856,66.304c0,43.648 14.4,56.469 14.549,56.597c2.603,2.24 4.117,5.739 3.819,9.152c-0.299,3.435 -2.091,6.635 -5.035,8.384c-0.512,0.32 -10.837,6.293 -30.357,10.688l28.629,7.147c9.109,2.283 17.685,6.848 24.789,13.227c1.109,1.003 2.005,2.219 2.624,3.605l5.12,11.456c0.576,-0.512 1.301,-0.789 1.771,-1.429c11.328,-16.085 24.405,-28.587 35.819,-34.283c13.589,-6.741 46.229,-10.795 69.973,-10.795c23.744,0 56.384,4.011 69.888,10.773c11.435,5.717 24.469,18.219 35.797,34.304c2.304,3.243 6.272,4.928 10.197,4.416c3.712,-0.469 5.483,-0.875 11.029,-0.299c3.029,0.299 5.973,-0.661 8.256,-2.688c2.24,-2.027 3.52,-4.885 3.52,-7.915V85.376H0.085zM309.333,128.043h64c5.888,0 10.667,4.779 10.667,10.667s-4.779,10.667 -10.667,10.667h-64c-5.888,0 -10.667,-4.779 -10.667,-10.667S303.445,128.043 309.333,128.043zM458.667,213.376H309.333c-5.888,0 -10.667,-4.779 -10.667,-10.667s4.779,-10.667 10.667,-10.667h149.333c5.888,0 10.667,4.779 10.667,10.667S464.555,213.376 458.667,213.376zM458.667,149.376H416c-5.888,0 -10.667,-4.779 -10.667,-10.667s4.779,-10.667 10.667,-10.667h42.667c5.888,0 10.667,4.779 10.667,10.667S464.555,149.376 458.667,149.376z" />
</vector>
11 changes: 11 additions & 0 deletions testomania/src/main/res/drawable/ic_forward.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:autoMirrored="true"
android:tint="?attr/colorControlNormal"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="@android:color/white"
android:pathData="M6.23,20.23l1.77,1.77l10,-10l-10,-10l-1.77,1.77l8.23,8.23z" />
</vector>
9 changes: 9 additions & 0 deletions testomania/src/main/res/drawable/ic_geo.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="1000dp"
android:height="1000dp"
android:viewportWidth="1000"
android:viewportHeight="1000">
<path
android:fillColor="#FF000000"
android:pathData="M847.2,153.6c48.3,46.9 84,101 107.5,162.1C978.2,376.9 990,439 990,501.9c0,65.5 -12.7,127.8 -38,187.2c-25.3,59.3 -59.9,111.2 -103.7,155.6c-43.9,44.4 -95.7,80 -155.7,106.5c-59.9,26.5 -124.4,39.9 -193.6,39.9c-69.2,0 -133.6,-13.6 -193.6,-40.8c-59.9,-27.1 -111.7,-63.2 -155.6,-108.3C106,796.7 71.8,744.6 47,685.2C22.3,626 10,564.3 10,500.1c0,-67.9 13.2,-131.6 40,-190.9c26.4,-59.3 62.2,-111.2 107.3,-155.6C202.4,109.1 254.6,74 313.8,48c59.2,-25.9 122.2,-39 189,-39c63,0 124.3,12.1 184.3,36.2C747.1,69.3 800.4,105.4 847.2,153.6zM936.2,572.3c3.7,-23.6 5.6,-47.6 5.6,-72.2c0,-58.1 -12.1,-113.9 -36.2,-167.7c-24,-53.7 -56.4,-101.3 -97.1,-142.7c-40.8,-41.4 -87.8,-74.4 -140.8,-99.1C614.5,66 558.3,53.5 499,53.5c-56.7,0 -111.4,11.8 -163.9,35.2c-52.5,23.4 -99.2,55.6 -139.9,96.4c-40.8,40.7 -73.5,88.2 -98.3,142.6C72.4,382 60,439.5 60,500.1c0,59.3 11.4,115.3 34.3,168.5c22.8,53.1 54,99.8 93.4,139.9c39.6,40.1 85.9,71.9 139,95.4c53.1,23.4 110.6,35.1 172.3,35.1c55.7,0 108.5,-9.6 158.5,-28.7c50,-19.2 94.5,-45.1 133.5,-77.8c38.8,-32.8 70.9,-71.3 96.2,-115.8C912.3,672.3 928.8,624.2 936.2,572.3zM519.4,533.4l35.3,29.6v70.5l-89,87.1c-1.1,1.2 -2.6,5.6 -3.7,12.9l-7.5,25.9l-7.4,29.7l-1.8,22.2c0,1.2 0.3,2.5 0.9,3.7c0.6,1.1 0.9,2.5 0.9,3.6l-7.3,7.5c-3.8,0 -6.8,0.6 -9.2,1.9l-16.8,-37l-22.2,-48.2c-3.7,-14.8 -6.5,-31.5 -8.3,-50c-1.9,-18.6 -4.6,-39.5 -8.4,-63l-53.7,-48.1l48.3,-59.3L349,494.5c-33.3,0 -61.1,-11.1 -83.5,-33.4L252.7,450l-12.9,-14.9l20.3,39l-12.9,5.5l-29.6,-57.4l5.6,-50.2l-11.1,-38.8l-35.2,-20.5l-7.4,-22.3c0,-7.3 5.6,-17.9 16.6,-31.4c11.2,-13.7 23.8,-26.6 38,-39c14.1,-12.3 28.7,-23.1 43.5,-32.4c14.7,-9.3 25.8,-13.8 33.3,-13.8c11.1,0 23.4,4.3 37.1,13c13.6,8.5 25.3,12.9 35.2,12.9c-1.2,1.2 -1.8,3.1 -1.8,5.5c0,5 1.8,8 5.4,9.2l-31.4,68.7l38.9,7.3l31.5,-29.6l53.8,3.6l11,27.9L449.1,326v20.3l18.4,3.7l9.4,-16.6l35.1,-22.2V326l14.9,25.8l-18.6,16.7l13,9.2l-25.9,1.8l9.3,18.6l-50.1,25.9l9.3,31.5h-16.7l-7.3,-31.5H399l-5.6,11.1l-16.7,-7.4l-24,26l20.4,24.1l-1.8,26l22.1,16.7L519.4,533.4zM515.7,233.3c8.6,-12.4 18.6,-24.2 29.6,-35.3c15,-13.5 30,-25.6 45.5,-36c15.4,-10.5 31.7,-20.7 49.1,-30.7c15.9,14.9 30.7,25.3 44.3,31.6c-5,2.5 -9.2,4.9 -13,7.4c-3.6,2.4 -8.1,5.4 -13,9.3c-4.8,3.6 -9.8,9.9 -14.7,18.4L625,227.7l-16.6,25.9l-16.8,11c-7.4,0 -13.2,-5.8 -17.5,-17.5c-4.5,-11.7 -6.6,-17 -6.6,-15.9c-9.8,0 -17.1,1.9 -22.2,5.6c-3.7,-3.7 -9.8,-5.6 -18.4,-5.6c-2.6,0 -4.4,0.4 -5.6,1C520.1,233 518.2,233.3 515.7,233.3L515.7,233.3zM858.5,412.9c14.8,6.3 23.6,19.8 25.9,40.8c2.4,21.1 3.6,38.2 3.6,51.9c0,46.9 -9.3,91.1 -27.8,132.4c-18.4,41.5 -37,80 -55.6,115.8c-3.7,0 -5.5,-4.4 -5.5,-13c0,-12.2 1.8,-29.2 5.5,-50.9c3.8,-21.7 5.7,-42.9 5.7,-63.9v-16.7l-3.7,-16.7l-27.8,-44.4l-72.2,-16.7L688,490.8l13,-63c9.9,-2.5 21,-4.6 33.3,-6.4c12.3,-1.9 27.8,-7.1 46.3,-15.7c2.5,2.5 6.2,3.7 11.1,3.7c3.7,0 7.8,-0.4 12.1,-0.9c4.4,-0.6 8.9,-0.9 13.8,-0.9c6.2,0 12.9,0.7 20.4,1.9C845.5,410.5 852.2,411.8 858.5,412.9zM747.3,231.4l-22.2,3.8l9.2,-29.7h22.3l3.7,14.8L747.3,231.4zM780.6,335.2H827v-22.2l9.3,-7.5c2.4,6.3 5.3,12.1 8.3,17.7c3.1,5.6 5.8,12 8.3,19.4l-18.5,16.7l-27.9,-5.6l-9.3,29.7l-36.9,-14.8L780.6,335.2zM780.6,292.6l-5.6,-14.9l9.3,-13l9.2,14.9L780.6,292.6zM797.3,255.5l5.5,-18.5l37.1,40.8l-18.5,18.5l-18.6,-1.8l16.7,-18.7l-11.1,-3.7L797.3,255.5zM843.7,383.3h16.5l-1.7,14.9L843.7,383.3z" />
</vector>
24 changes: 24 additions & 0 deletions testomania/src/main/res/drawable/ic_math.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="396.23dp"
android:height="396.23dp"
android:viewportWidth="396.23"
android:viewportHeight="396.23">
<path
android:fillColor="#FF000000"
android:pathData="M344.543,0.561H51.686C23.19,0.561 0,23.747 0,52.248v291.737c0,28.5 23.189,51.686 51.686,51.686h292.856c28.499,0 51.688,-23.186 51.688,-51.686V52.248C396.231,23.747 373.042,0.561 344.543,0.561zM375.556,52.248v135.531H208.454V21.236h136.089C361.644,21.236 375.556,35.147 375.556,52.248zM51.686,21.236h136.092v166.543H20.677V52.248C20.677,35.147 34.585,21.236 51.686,21.236zM20.677,343.984V208.453h167.102v166.543H51.686C34.585,374.996 20.677,361.084 20.677,343.984zM344.543,374.996H208.454V208.453h167.103v135.531C375.556,361.084 361.644,374.996 344.543,374.996z" />
<path
android:fillColor="#FF000000"
android:pathData="M242.966,119.299h37.011v37.006c0,5.708 4.623,10.337 10.338,10.337c5.705,0 10.337,-4.629 10.337,-10.337v-37.009h37.009c5.705,0 10.338,-4.628 10.338,-10.337c0,-5.708 -4.633,-10.337 -10.338,-10.337h-37.009V61.614c0,-5.708 -4.632,-10.338 -10.337,-10.338c-5.715,0 -10.338,4.629 -10.338,10.338v37.01h-37.011c-5.7,0 -10.334,4.629 -10.334,10.338C232.632,114.671 237.265,119.299 242.966,119.299z" />
<path
android:fillColor="#FF000000"
android:pathData="M59.047,155.724c2.019,2.019 4.663,3.029 7.309,3.029c2.644,0 5.29,-1.01 7.31,-3.029l32.152,-32.15l32.152,32.153c2.02,2.019 4.663,3.028 7.309,3.028c2.645,0 5.289,-1.01 7.309,-3.028c4.039,-4.036 4.039,-10.582 0,-14.618l-32.152,-32.15l32.152,-32.146c4.039,-4.035 4.039,-10.58 0,-14.618c-4.038,-4.038 -10.578,-4.038 -14.617,0l-32.152,32.147L73.675,62.194c-4.038,-4.038 -10.579,-4.038 -14.618,0c-4.038,4.036 -4.038,10.583 0,14.618l32.145,32.146l-32.153,32.147C55.009,145.142 55.009,151.686 59.047,155.724z" />
<path
android:fillColor="#FF000000"
android:pathData="M144.522,282.82l-77.4,0.002c-5.713,0 -10.336,4.629 -10.336,10.338s4.623,10.338 10.336,10.338l77.4,-0.004c5.711,0 10.335,-4.627 10.335,-10.336S150.233,282.82 144.522,282.82z" />
<path
android:fillColor="#FF000000"
android:pathData="M329.018,304.781l-77.409,0.004c-5.713,0 -10.336,4.627 -10.336,10.336s4.623,10.338 10.336,10.338l77.409,-0.002c5.701,0 10.338,-4.629 10.338,-10.338S334.72,304.781 329.018,304.781z" />
<path
android:fillColor="#FF000000"
android:pathData="M329.018,260.854l-77.409,0.002c-5.713,0 -10.336,4.629 -10.336,10.338s4.623,10.338 10.336,10.338l77.409,-0.004c5.701,0 10.338,-4.629 10.338,-10.336C339.355,265.482 334.72,260.854 329.018,260.854z" />
</vector>
6 changes: 3 additions & 3 deletions testomania/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<resources>
<string name="app_name">Testomania</string>
<string name="general_skills_tests">უნარების ტესტები</string>
<string name="driving_license_tests">მარვის მოწმობის ტესტები</string>
<string name="geography_tests">გეოგრაფიის ტესტები</string>
<string name="general_skills_tests">უნარები (მათემატიკური)</string>
<string name="driving_license_tests">მართვის მოწმობა</string>
<string name="geography_tests">გეოგრაფია</string>
<string name="title_name">Testomania</string>
</resources>

0 comments on commit d01c18b

Please sign in to comment.