openlp-mobile-remote/lib/main.dart

17 lines
417 B
Dart
Raw Normal View History

2019-07-24 13:15:11 +00:00
import 'package:flutter/material.dart';
import 'src/openlp_remote_app.dart';
2019-08-06 21:05:35 +00:00
import 'src/app_theme.dart';
import 'src/widgets/settings.dart';
2019-07-24 13:15:11 +00:00
2019-08-06 21:05:35 +00:00
void main() => runApp(
MaterialApp(
debugShowCheckedModeBanner: false,
theme: appTheme,
routes: <String, WidgetBuilder>{
'/': (context) => OpenLPRemoteApp(),
'/settings': (context) => Settings(),
},
),
);