Answers for "flutter accept only uppercase"

1

flutter input text start with upper case

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

flutter uppercase text style

Text('Aposté todo a tu risa y perdí la mía. - JZ'.toUpperCase(), style: TextStyle(fontSize: 16.0, fontWeight: FontWeight.bold))
Posted by: Guest on February-17-2021

Code answers related to "Swift"

Browse Popular Code Answers by Language