I noticed that compose on iOS auto-capitalises the...
# compose-ios
a
I noticed that compose on iOS auto-capitalises the first letter in the text field even with this option off. Not a big issue for text except for a password... managed to type the first letter lowercase by playing with Shift button. I am on compose-jb 1.2.2, was this fixed in the later release?
Copy code
keyboardOptions = KeyboardOptions(
            capitalization = KeyboardCapitalization.None,
            autoCorrect = false,
            keyboardType = KeyboardType.Password,
            imeAction = ImeAction.Send,
        ),
d
Thanks for bug description! Yes, we don't check
capitalization = KeyboardCapitalization.None
on iOS yet. It's still not fixed in the latest version. I create an issue here: https://github.com/JetBrains/compose-jb/issues/2735
a
Thanks