Skip to content

Instantly share code, notes, and snippets.

@alamsyahh15
Created September 23, 2019 01:46
Show Gist options
  • Save alamsyahh15/96a173efcb1cd42163871d527ce715b3 to your computer and use it in GitHub Desktop.
Save alamsyahh15/96a173efcb1cd42163871d527ce715b3 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
import 'package:flutter_day3/ui_view/page_basic_list.dart';
import 'package:flutter_day3/ui_view/list_horizontal.dart';
import 'package:flutter_day3/ui_view/simple_grid_view.dart';
import 'package:flutter_day3/ui_view/custom_grid_view.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
// This is the theme of your application.
//
// Try running your application with "flutter run". You'll see the
// application has a blue toolbar. Then, without quitting the app, try
// changing the primarySwatch below to Colors.green and then invoke
// "hot reload" (press "r" in the console where you ran "flutter run",
// or simply save your changes to "hot reload" in a Flutter IDE).
// Notice that the counter didn't reset back to zero; the application
// is not restarted.
primarySwatch: Colors.blue,
),
home: PageHome(),debugShowCheckedModeBanner: false,
);
}
}
class PageHome extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Day 3'),
backgroundColor: Colors.red,
),
body: Center(
child: Column(
children: <Widget>[
Container(
child: MaterialButton(
onPressed: () {
Navigator.push(context,MaterialPageRoute(builder: (context) => PageBasicList()));
},
color: Colors.red,
textColor: Colors.white,
child: Text('Simple List'),
),
),
Container(
child: MaterialButton(
onPressed: () {
Navigator.push(context,MaterialPageRoute(builder: (context) => ListHorizontal()));
},
color: Colors.red,
textColor: Colors.white,
child: Text('Horizontal List'),
),
),
Container(
child: MaterialButton(
onPressed: () {
Navigator.push(context, MaterialPageRoute(builder: (context) => PageSimpleGrid()));
},
color: Colors.red,
textColor: Colors.white,
child: Text('Simple Grid'),
),
),
Container(
child: MaterialButton(
onPressed: () {
},
color: Colors.red,
textColor: Colors.white,
child: Text('Card List'),
),
),
Container(
child: MaterialButton(
onPressed: () {
Navigator.push(context, MaterialPageRoute(builder: (context) => CustomGridView()));
},
color: Colors.red,
textColor: Colors.white,
child: Text('Custom Grid View'),
),
),
],
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment