How to Underline Text in Flutter
Sometimes, you may want to underline text to get the attention of the user. Let’s check how to add text with underline in Flutter. The TextStyle class is used for styling Text widgets in Flutter. Using the decoration property and TextDecoration class, you can underline your text easily. If you want to underline only a …