Skip to content

Instantly share code, notes, and snippets.

@jediyeti
Created January 31, 2020 15:03
Show Gist options
  • Save jediyeti/e5395aa5128b3b2538e719aa680dd4e5 to your computer and use it in GitHub Desktop.
Save jediyeti/e5395aa5128b3b2538e719aa680dd4e5 to your computer and use it in GitHub Desktop.
Rows And Columns Example
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
void main() {
debugPaintSizeEnabled = false;
runApp(MaterialApp(home: MyApp()));
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text('Rows and Columns')),
body: Container(
padding: EdgeInsets.symmetric(horizontal: 8.0),
child: Row(children: [
Column(children: [Icon(Icons.star, size: 50), Text('Star')]),
Column(children: [Icon(Icons.flag, size: 50), Text('Flag')]),
Column(children: [Icon(Icons.home, size: 50), Text('Home')])
]),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment