Files
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(),
),
));
}