layout_grid 1.0.0+1
layout_grid: ^1.0.0+1 copied to clipboard
Layout grid following the Material Design Guide lines
example/lib/main.dart
import 'package:example/pages/cupertino_photos.dart';
import 'package:example/pages/vgv_example.dart';
import 'package:example/pages/features.dart';
import 'package:example/pages/grid.dart';
import 'package:example/unsplash_provider.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:layout_grid/layout_grid.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Flutter Demo',
theme: ThemeData(
cardTheme: CardTheme(
elevation: 0,
color: Colors.blue[100],
),
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
// This widget is the home page of your application. It is stateful, meaning
// that it has a State object (defined below) that contains fields that affect
// how it looks.
// This class is the configuration for the state. It holds the values (in this
// case the title) provided by the parent (in this case the App widget) and
// used by the build method of the State. Fields in a Widget subclass are
// always marked "final".
final String title;
const MyHomePage({Key key, this.title}) : super(key: key);
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
int _counter = 0;
void _incrementCounter() {
setState(() {
// This call to setState tells the Flutter framework that something has
// changed in this State, which causes it to rerun the build method below
// so that the display can reflect the updated values. If we changed
// _counter without calling setState(), then the build method would not be
// called again, and so nothing would appear to happen.
_counter++;
});
}
@override
Widget build(BuildContext context) {
final List<Widget> pages = [
VGVExample(),
FeaturesPage(),
CupertinoPhotos(),
GridPage(),
];
return Layout(
child: Scaffold(
body: PageView.builder(
//physics: NeverScrollableScrollPhysics(),
itemCount: pages.length,
itemBuilder: (context, index) {
return pages[index];
},
),
),
);
}
}