xxxxxxxxxx
Text(
'hello',// the Text
style: TextStyle(// styling the text
fontSize: 20.0,//the size of the text
fontWeight: FontWeight.bold,// font weight
color: Color(0xff4169e1)),//text color
),
xxxxxxxxxx
Text(
"Welcome to AllAboutFlutter",
style: TextStyle(
fontSize: 32.0,
),
),