3. Flutter - Text Widget
Text Widget:
child: Text()
Expanded Text Widget:
Text(
"HELLO",
style: TextStyle(), // TextStyle Widget
)
TextStyle Widget Properties:
fontSize: 50.0,
fontWeight: FontWeight.bold,
letterSpacing: 2.0,
color: Colors.grey[600],
fontFamily: 'FAMILY1',
Comments
Post a Comment