https://kotlinlang.org logo
#compose
Title
# compose
b

bruno.aybar

10/14/2020, 4:51 AM
When using
OutlinedTextField
, is there any way to always keep the label at the top , instead of having it inside when the text is empty / unfocused? I know the answer here usually is that that's the recommended material behavior, however, in this case I feel that such a small change is not worth creating a new
TextFieldImpl
implementation (but of course, I may be wrong).
s

Siyamed

10/14/2020, 4:52 AM
There is no end for specific requests :/
As far as i know as you also mentioned the material textfields strictly follow the material guidelines
Actually it applies to all/most of the material layer
b

bruno.aybar

10/14/2020, 5:04 AM
You're right, I see how those specific requests can get out of hand. Totally get the logic behind that. At the end, my real problem here was that I was looking at
TextFieldImpl
by mistake, instead of looking at
BaseTextField
which makes much more sense here and with little work can cover my use case 😅
👍 1
4 Views