flutter textstyle sublined code example
Example 1: underline text in flutter
Text(
'Hello world',
style: TextStyle(
decoration: TextDecoration.underline,
),
)
Example 2: how to set font family in flutter
MaterialApp(
title: 'Custom Fonts',
// Set Raleway as the default app font.
theme: ThemeData(fontFamily: 'Raleway'),
home: MyHomePage(),
);