Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
3cd3f3eba1 | |||
bcf0e0333e | |||
8447122c89 | |||
1b839010c6 |
@ -15,8 +15,8 @@ android {
|
|||||||
applicationId = "com.hyperling.roomexample"
|
applicationId = "com.hyperling.roomexample"
|
||||||
minSdk = 21
|
minSdk = 21
|
||||||
targetSdk = 34
|
targetSdk = 34
|
||||||
versionCode = 1
|
versionCode = 2
|
||||||
versionName = "1.0"
|
versionName = "1.01"
|
||||||
|
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
|
@ -22,9 +22,21 @@ import androidx.compose.material3.Text
|
|||||||
import androidx.compose.runtime.Composable
|
import androidx.compose.runtime.Composable
|
||||||
import androidx.compose.ui.Alignment
|
import androidx.compose.ui.Alignment
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
|
import androidx.compose.ui.res.stringResource
|
||||||
import androidx.compose.ui.unit.dp
|
import androidx.compose.ui.unit.dp
|
||||||
import androidx.compose.ui.unit.sp
|
import androidx.compose.ui.unit.sp
|
||||||
|
|
||||||
|
fun getEnumStringResourceID(enumName: String): Int {
|
||||||
|
return (
|
||||||
|
when (enumName) {
|
||||||
|
SortType.FIRST_NAME.toString() -> R.string.FIRST_NAME
|
||||||
|
SortType.LAST_NAME.toString() -> R.string.LAST_NAME
|
||||||
|
SortType.PHONE_NUMBER.toString() -> R.string.PHONE_NUMBER
|
||||||
|
else -> 0
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
fun ContactScreen(
|
fun ContactScreen(
|
||||||
state: ContactState,
|
state: ContactState,
|
||||||
@ -52,6 +64,9 @@ fun ContactScreen(
|
|||||||
verticalArrangement = Arrangement.spacedBy(16.dp)
|
verticalArrangement = Arrangement.spacedBy(16.dp)
|
||||||
){
|
){
|
||||||
item {
|
item {
|
||||||
|
Row (){
|
||||||
|
Text(text = "Sort ascending by:")
|
||||||
|
}
|
||||||
Row (
|
Row (
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
@ -72,10 +87,13 @@ fun ContactScreen(
|
|||||||
onEvent(ContactEvent.SortContacts(sortType))
|
onEvent(ContactEvent.SortContacts(sortType))
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
Text(text = sortType.name)
|
Text(text = stringResource(getEnumStringResourceID(sortType.name)))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Row (){
|
||||||
|
Text(text = "Contacts:")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
items(state.contacts) {contact ->
|
items(state.contacts) {contact ->
|
||||||
Row (
|
Row (
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
<resources>
|
<resources>
|
||||||
<string name="app_name">Room Database Testing</string>
|
<string name="app_name">Room Database Testing</string>
|
||||||
|
<string name="FIRST_NAME">First Name</string>
|
||||||
|
<string name="LAST_NAME">Last Name</string>
|
||||||
|
<string name="PHONE_NUMBER">Phone Number</string>
|
||||||
</resources>
|
</resources>
|
Loading…
x
Reference in New Issue
Block a user