Built-in Widgets

Text, Image, Icon, Button, and more

Flutter ships with a rich set of widgets for common UI patterns. Click each category to see what they look like.

Hello Flutter
fontSize: 24
fontWeight: bold
letterSpacing: 1.2
Dart
Text(
  'Hello Flutter',
  style: TextStyle(
    fontSize: 24,
    fontWeight: FontWeight.bold,
    color: Colors.blue,
    letterSpacing: 1.2,
  ),
)