mirror of
https://gitlab.com/openlp/openlp-mobile-remote.git
synced 2024-12-22 20:02:53 +00:00
OpenLPRemote renamed to OpenLPMobileRemote
This commit is contained in:
parent
a10d2f7cc7
commit
9270ade460
@ -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(),
|
||||
},
|
||||
),
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user