Colton Idle
04/05/2021, 12:40 AMExposedDropdownMenu
from material android isn't available out of the box. Does anyone have a good gist to use as a replacement? I'm trying to create this from the docs.nglauber
04/05/2021, 2:05 AMColton Idle
04/05/2021, 11:44 AMColton Idle
04/05/2021, 11:56 AMnglauber
04/05/2021, 12:09 PMOutlinedTextField(
value = text.value,
onValueChange = { text.value = it },
label = { Text(text = "Country", color = Color.Red) }, // << for the label
modifier = Modifier.fillMaxWidth(),
colors= TextFieldDefaults.outlinedTextFieldColors(
unfocusedBorderColor = Color.Red // << for the border
)
)