1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2025-11-08 12:39:17 +00:00
Files
flutter-examples/using_listview/lib/main.dart
2018-01-20 03:23:01 +05:30

14 lines
280 B
Dart

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