File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
app/src/main/java/to/bitkit/ui/settings/advanced Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import androidx.compose.foundation.layout.fillMaxWidth
88import androidx.compose.foundation.layout.imePadding
99import androidx.compose.foundation.layout.padding
1010import androidx.compose.foundation.rememberScrollState
11+ import androidx.compose.foundation.text.KeyboardOptions
1112import androidx.compose.foundation.verticalScroll
1213import androidx.compose.runtime.Composable
1314import androidx.compose.runtime.LaunchedEffect
@@ -16,6 +17,7 @@ import androidx.compose.ui.Modifier
1617import androidx.compose.ui.platform.LocalContext
1718import androidx.compose.ui.platform.testTag
1819import androidx.compose.ui.res.stringResource
20+ import androidx.compose.ui.text.input.ImeAction
1921import androidx.compose.ui.tooling.preview.Preview
2022import androidx.compose.ui.unit.dp
2123import androidx.hilt.navigation.compose.hiltViewModel
@@ -131,6 +133,7 @@ private fun Content(
131133 TextInput (
132134 value = uiState.rgsUrl,
133135 onValueChange = onChangeUrl,
136+ keyboardOptions = KeyboardOptions (imeAction = ImeAction .Done ),
134137 modifier = Modifier .fillMaxWidth().testTag(" RGSUrl" )
135138 )
136139
You can’t perform that action at this time.
0 commit comments