flutter

Text with Styles

Text(
  "Text With Styles",
  style: TextStyle(
    color: Colors.grey[800],
    fontWeight: FontWeight.bold,
    fontSize: 18.0,
  ),
)
Was this helpful?