import 'package:flutter/material.dart';
void main() {
runApp(
MaterialApp(
home: MyWidget(),
),
);
}
class MyWidget extends StatelessWidget {
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Wrap(
children: [
Container(
height: 100,
width: 250,
color: Colors.yellow,
),
Container(
height: 100,
width: 250,
color: Colors.red,
),
Container(
height: 100,
width: 250,
color: Colors.blue,
),
Container(
height: 100,
width: 250,
color: Colors.brown,
),
Container(
height: 100,
width: 250,
color: Colors.black,
),
Container(
height: 100,
width: 250,
color: Colors.cyan,
),
],
),
),
);
}
}
View Compiled
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.