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

Popular posts from this blog

2. FreeCodeCamp - Dynamic Programming - Learn to Solve Algorithmic Problems & Coding Challenges

20. Data Analytics - Analyze Data to Answer Questions - Week 1

3. Algorithms - Selection Sort