Skip to content

Instantly share code, notes, and snippets.

@chonghorizons
Created November 28, 2021 04:45
Show Gist options
  • Save chonghorizons/4c873c8bdfadc18641507a43d199c6ea to your computer and use it in GitHub Desktop.
Save chonghorizons/4c873c8bdfadc18641507a43d199c6ea to your computer and use it in GitHub Desktop.
Flexibles Work with Empty Containers
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: "Empty Containers aren't rendered",
debugShowCheckedModeBanner: false,
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: Scaffold(
appBar: AppBar(title: Text('Flexibles Work')),
body: Column(
children: [
Flexible( child: Container(color: Colors.cyan) ),
Flexible( child: Container(color: Colors.teal) ),
Flexible( child: Container(color: Colors.indigo) ),
],)
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment