How to add Text with All Caps in Flutter
Text is one of the most important widgets in Flutter to display text content. Let’s learn how to capitalize Text in Flutter easily. Even though TextField has a feature to capitalize text, there’s no inbuilt way in the Text widget to make text all caps. Hence, we have to use Dart method toUpperCase() to capitalize…