mirror of
https://github.com/nisrulz/flutter-examples.git
synced 2025-07-18 01:41:19 +08:00
16 lines
318 B
Dart
16 lines
318 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import './AboutPage.dart';
|
|
import './HomePage.dart';
|
|
|
|
void main() {
|
|
runApp(new MaterialApp(
|
|
home: new HomePage(),
|
|
// Setup routes
|
|
routes: <String, WidgetBuilder>{
|
|
// Set named routes
|
|
"/about": (BuildContext context) => new AboutPage(),
|
|
},
|
|
));
|
|
}
|