Files
2018-02-10 21:49:54 +05:30

24 lines
653 B
Dart

import 'package:flutter/material.dart';
import 'package:grid_layout/gridview.dart';
void main() => runApp(new MyApp());
class MyApp extends StatelessWidget {
final MyGridView myGridView = new MyGridView();
@override
Widget build(BuildContext context) {
return new MaterialApp(
debugShowCheckedModeBanner: false,
home: new Scaffold(
appBar: new AppBar(
// Here we take the value from the MyHomePage object that was created by
// the App.build method, and use it to set our appbar title.
title: new Text("GridView Example"),
),
body: myGridView.build(),
),
);
}
}