Created
January 31, 2020 15:03
-
-
Save jediyeti/e5395aa5128b3b2538e719aa680dd4e5 to your computer and use it in GitHub Desktop.
Rows And Columns Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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