1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2025-11-08 20:50:04 +00:00
Files
flutter-examples/using_listview/lib/main.dart
2018-02-10 21:49:54 +05:30

15 lines
319 B
Dart

import 'package:flutter/material.dart';
import 'package:using_listview/contact_page.dart';
void main() {
runApp(new MaterialApp(
debugShowCheckedModeBanner: false,
home: new Scaffold(
appBar: new AppBar(
title: new Text("Using Listview"),
),
body: new ContactPage(),
),
));
}