1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2025-11-08 12:39:17 +00:00
Files
flutter-examples/handling_routes/lib/main.dart
2017-08-09 01:26:57 -07:00

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