diff --git a/lib/main.dart b/lib/main.dart index c77f580..bb1d015 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -22,7 +22,7 @@ import 'package:flutter/material.dart'; -import 'src/openlp_remote_app.dart'; +import 'src/openlp_mobile_remote_app.dart'; import 'src/app_theme.dart'; import 'src/screens/settings.dart'; @@ -31,7 +31,7 @@ void main() => runApp( debugShowCheckedModeBanner: false, theme: appTheme, routes: <String, WidgetBuilder>{ - '/': (context) => OpenLPRemoteApp(), + '/': (context) => OpenLPMobileRemoteApp(), '/settings': (context) => Settings(), }, ), diff --git a/lib/src/openlp_remote_app.dart b/lib/src/openlp_mobile_remote_app.dart similarity index 92% rename from lib/src/openlp_remote_app.dart rename to lib/src/openlp_mobile_remote_app.dart index 703e390..fb8cb28 100644 --- a/lib/src/openlp_remote_app.dart +++ b/lib/src/openlp_mobile_remote_app.dart @@ -27,12 +27,12 @@ import 'widgets/search_floating_button.dart'; import 'screens/service_list_view.dart'; import 'screens/slides_list_view.dart'; -class OpenLPRemoteApp extends StatefulWidget { +class OpenLPMobileRemoteApp extends StatefulWidget { @override - _OpenLPRemoteAppState createState() => _OpenLPRemoteAppState(); + _OpenLPMobileRemoteAppState createState() => _OpenLPMobileRemoteAppState(); } -class _OpenLPRemoteAppState extends State<OpenLPRemoteApp> +class _OpenLPMobileRemoteAppState extends State<OpenLPMobileRemoteApp> with SingleTickerProviderStateMixin { TabController tabController;