Added fire notify and support page

This commit is contained in:
Vicente J. Ruiz Jurado 2018-07-24 15:11:00 +02:00
parent 6d9ad379c4
commit 5959670f80
7 changed files with 113 additions and 21 deletions

View file

@ -14,6 +14,7 @@ import 'sandbox.dart';
import 'theme.dart';
import 'privacyPage.dart';
import 'fireAlert.dart';
import 'supportPage.dart';
class FiresApp extends StatelessWidget {
static final WidgetBuilder introWidget = (context) => new IntroPage();
@ -25,7 +26,8 @@ class FiresApp extends StatelessWidget {
PrivacyPage.routeName: (BuildContext context) => new PrivacyPage(context),
ActiveFiresPage.routeName: (BuildContext context) => new ActiveFiresPage(),
Sandbox.routeName: (BuildContext context) => new Sandbox(),
FireAlert.routeName: (BuildContext context) => new FireAlert()
FireAlert.routeName: (BuildContext context) => new FireAlert(),
SupportPage.routeName: (BuildContext context) => new SupportPage(),
};
final Store<AppState> store;