xxxxxxxxxx
Flutter Html Widget
Html(
data: 'my text',
style: {
"body": Style(
fontSize: FontSize(18.0),
fontWeight: FontWeight.bold,
),
},
)
xxxxxxxxxx
new Text(
'Welcome to Flutter Tutorial.',
style: TextStyle(
color: Colors.blue,
),
)
xxxxxxxxxx
Text(
errMessage,
style: const TextStyle(
color: Colors.red,
fontSize: 12,
fontWeight: FontWeight.w900,
),
),
xxxxxxxxxx
Text(
"Welcome to AllAboutFlutter",
style: TextStyle(
fontSize: 32.0,
),
),