Your First Flutter App: An App From Scratch

Feb 22 2022 · Dart 2.14.1, Flutter 2.5, Visual Studio Code 1.6

Part 3: Create UI with Flutter

22. Challenge: Layout Widgets

Episode complete

Play next episode

Next
About this episode

Leave a rating/review

See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 21. Add a Slider Next episode: 23. Add Spacing & Padding

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Heads up... You've reached locked video content where the transcript will be shown as obfuscated text.

It’s time for your next challenge! This time, you’ll get some practice laying out widgets in Flutter.

TextButton(
    child:
        const Text('Hit Me!', style: TextStyle(color: Colors.blue)),
    onPressed: () {
    _showAlert(context);
    },
), <-- old code
Row(
    mainAxisAlignment: MainAxisAlignment.center,
    children: <Widget>[

    ],
)
TextButton(
    child: const Text('Start Over'),
    onPressed: () {},
),
const Text('Score: '),
const Text('99999'),
const Text('Round: '),
const Text('999'),
TextButton(
    child: const Text('Info'),
    onPressed: () {},
),