mirror of
https://github.com/nisrulz/flutter-examples.git
synced 2025-07-04 17:50:04 +08:00
15 lines
299 B
Dart
15 lines
299 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:using_listview/contact_page.dart';
|
|
|
|
void main() {
|
|
runApp(MaterialApp(
|
|
debugShowCheckedModeBanner: false,
|
|
home: Scaffold(
|
|
appBar: AppBar(
|
|
title: Text("Using Listview"),
|
|
),
|
|
body: ContactPage(),
|
|
),
|
|
));
|
|
}
|