Answers for "flutter to capital letter"

1

flutter input text start with upper case

TextField(
   keyboardType: TextInputType.text,
   textCapitalization: TextCapitalization.sentences
)
Posted by: Guest on August-01-2020
0

flutter to capital letter

'alphabet'.toUpperCase(); // 'ALPHABET'
'ABC'.toUpperCase();      // 'ABC'
Posted by: Guest on October-16-2020

Browse Popular Code Answers by Language