Skip to content

Instantly share code, notes, and snippets.

@rickyngan
Created June 11, 2020 07:39
Show Gist options
  • Save rickyngan/24bae356ddfc39becd18149c8a5332c4 to your computer and use it in GitHub Desktop.
Save rickyngan/24bae356ddfc39becd18149c8a5332c4 to your computer and use it in GitHub Desktop.
2020 Jun 13 HoC HK Flutter: 6_row_column
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
debugShowCheckedModeBanner: false,
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.end,
children: <Widget>[
for (var i = 0; i < 3; i++)
Icon(
Icons.insert_emoticon,
color: const Color(0xFF000000),
size: 48.0),
],
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment