As we are having android:textAllCaps="true"
feature in Android's Textview, how can we give this same feature in Text() Widget of Flutter?
I know Text('Abc'.toUpperCase())
, is one way but I don't want to do it manually. Is there any property of Text() widget that converts it automatically or any widget that has similar property?