mirror of
https://gitlab.com/openlp/openlp-mobile-remote.git
synced 2024-12-22 20:02:53 +00:00
17 lines
417 B
Dart
17 lines
417 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'src/openlp_remote_app.dart';
|
|
import 'src/app_theme.dart';
|
|
import 'src/widgets/settings.dart';
|
|
|
|
void main() => runApp(
|
|
MaterialApp(
|
|
debugShowCheckedModeBanner: false,
|
|
theme: appTheme,
|
|
routes: <String, WidgetBuilder>{
|
|
'/': (context) => OpenLPRemoteApp(),
|
|
'/settings': (context) => Settings(),
|
|
},
|
|
),
|
|
);
|