new Text(
'Welcome to Flutter Tutorial.',
style: TextStyle(
color: Colors.blue,
),
)
Flutter Html Widget
Html(
data: 'my text',
style: {
"body": Style(
fontSize: FontSize(18.0),
fontWeight: FontWeight.bold,
),
},
)
Text(
"Hello",
style: TextStyle(color: Colors.black.withOpacity(0.5)),
)
Text(
''Hello',
style: TextStyle(
color: Colors.blue,
),
)
Text(
"Welcome to AllAboutFlutter",
style: TextStyle(
fontSize: 32.0,
),
),