Focus labels textfield when opening on Android

This commit is contained in:
Jackson Harper
2023-06-14 16:35:41 +08:00
parent fc08a434e1
commit 40a38b7748
3 changed files with 4 additions and 3 deletions

View File

@ -153,7 +153,7 @@ dependencies {
kapt "androidx.room:room-compiler:$room_version"
implementation 'com.github.jeziellago:compose-markdown:0.3.3'
implementation "io.github.dokar3:chiptextfield:0.4.6"
implementation "io.github.dokar3:chiptextfield:0.4.7"
}
apollo {

View File

@ -389,6 +389,6 @@ fun LabelsSelectionSheetContent(
}
}
LaunchedEffect(Unit) {
state.focusTextField()
}
}

View File

@ -183,7 +183,8 @@ fun EditNoteModal(initialValue: String?, onDismiss: (save: Boolean, text: String
.fillMaxSize(),
value = annotation.value, onValueChange = { annotation.value = it },
colors = TextFieldDefaults.textFieldColors(
textColor = Color.White
focusedTextColor = Color.White,
unfocusedTextColor = Color.White,
)
)
}