TextFieldWithLabel

fun TextFieldWithLabel(value: String, onValueChange: (String) -> Unit, label: String, modifier: Modifier = Modifier, textStyle: TextStyle = MaterialTheme.typography.bodyMedium, shape: Shape = RoundedCornerShape(5.dp), focusedBgColor: Color = MaterialTheme.colorScheme.onPrimary, unfocusedBgColor: Color = MaterialTheme.colorScheme.onPrimary, focusedTextColor: Color = MaterialTheme.colorScheme.onSecondary, unfocusedTextColor: Color = MaterialTheme.colorScheme.onSurfaceVariant, isSingleLine: Boolean = true)