fix username -> name
This commit is contained in:
parent
fc1d12e214
commit
6a676c2fad
3 changed files with 6 additions and 1 deletions
|
@ -120,6 +120,8 @@ dependencies {
|
||||||
implementation 'com.google.firebase:firebase-perf-ktx'
|
implementation 'com.google.firebase:firebase-perf-ktx'
|
||||||
implementation 'com.google.firebase:firebase-config-ktx'
|
implementation 'com.google.firebase:firebase-config-ktx'
|
||||||
|
|
||||||
|
// Colorpicker
|
||||||
|
implementation 'com.github.skydoves:colorpicker-compose:1.0.2'
|
||||||
}
|
}
|
||||||
|
|
||||||
// Allow references to generate code
|
// Allow references to generate code
|
||||||
|
|
|
@ -73,7 +73,7 @@ fun SubjectForm(
|
||||||
singleLine = true,
|
singleLine = true,
|
||||||
value = uiState.name,
|
value = uiState.name,
|
||||||
onValueChange = onNameChange,
|
onValueChange = onNameChange,
|
||||||
placeholder = { Text(stringResource(id = R.string.username)) },
|
placeholder = { Text(stringResource(id = R.string.name)) },
|
||||||
modifier = Modifier.fieldModifier(),
|
modifier = Modifier.fieldModifier(),
|
||||||
)
|
)
|
||||||
BasicButton(
|
BasicButton(
|
||||||
|
|
|
@ -50,6 +50,9 @@
|
||||||
<string name="delete_task">Delete Task</string>
|
<string name="delete_task">Delete Task</string>
|
||||||
<string name="view_tasks">View</string>
|
<string name="view_tasks">View</string>
|
||||||
|
|
||||||
|
<!-- Form -->
|
||||||
|
<string name="name">Name</string>
|
||||||
|
|
||||||
<!-- Sessions -->
|
<!-- Sessions -->
|
||||||
<string name="sessions">Sessions</string>
|
<string name="sessions">Sessions</string>
|
||||||
|
|
||||||
|
|
Reference in a new issue