updated: using_listview example with working implementation

This commit is contained in:
Nishant Srivastava
2018-01-20 03:23:01 +05:30
parent b1644e96f3
commit b4110ca438
5 changed files with 85 additions and 13 deletions

View File

@ -1,19 +1,13 @@
import 'package:flutter/material.dart';
import 'package:using_listview/contact_page.dart';
void main() => runApp(new MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return new MaterialApp(
home: new Scaffold(
void main() {
runApp(new MaterialApp(
home: new Scaffold(
appBar: new AppBar(
title: new Text("Using Listview"),
),
body: new Center(
child: new Text("Hello World!"),
),
));
}
body: new ContactPage(),
),
));
}