Fix padding on edit view

This commit is contained in:
William Brawner 2024-05-06 19:39:16 -06:00
parent 75e38a97dd
commit de9956cbf7
Signed by: wbrawner
GPG key ID: 8FF12381C6C90D35

View file

@ -63,16 +63,21 @@ fun MarkdownTextField(
focusedIndicatorColor = Color.Transparent,
unfocusedIndicatorColor = Color.Transparent
)
val interactionSource = remember { MutableInteractionSource() }
val textStyle = TextStyle.Default.copy(
fontFamily = FontFamily.Monospace,
color = MaterialTheme.colorScheme.onSurface
)
val interactionSource = remember { MutableInteractionSource() }
val textStyle = TextStyle.Default.copy(
fontFamily = FontFamily.Monospace,
color = MaterialTheme.colorScheme.onSurface
)
Column(
modifier = modifier
.fillMaxSize()
.imePadding()
.verticalScroll(rememberScrollState())
) {
CompositionLocalProvider(LocalTextSelectionColors provides colors.textSelectionColors) {
BasicTextField(
value = textFieldValue,
modifier = modifier.fillMaxSize()
.imePadding(),
modifier = Modifier.fillMaxSize(),
onValueChange = setTextFieldAndViewModelValues,
enabled = true,
readOnly = false,
@ -102,6 +107,7 @@ fun MarkdownTextField(
}
)
}
}
}
private fun String.annotate(enableReadability: Boolean): AnnotatedString {