Added fire notify and support page
This commit is contained in:
parent
6d9ad379c4
commit
5959670f80
7 changed files with 113 additions and 21 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue