added: using_listview

This commit is contained in:
Nishant Srivastava
2018-01-20 02:52:02 +05:30
parent 9fb9cc543a
commit b1644e96f3
58 changed files with 1438 additions and 0 deletions

View File

@ -0,0 +1,19 @@
import 'package:flutter/material.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(
appBar: new AppBar(
title: new Text("Using Listview"),
),
body: new Center(
child: new Text("Hello World!"),
),
));
}
}