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 'package:flutter/material.dart';
|
||||||
|
|
||||||
import 'src/openlp_remote_app.dart';
|
import 'src/openlp_mobile_remote_app.dart';
|
||||||
import 'src/app_theme.dart';
|
import 'src/app_theme.dart';
|
||||||
import 'src/screens/settings.dart';
|
import 'src/screens/settings.dart';
|
||||||
|
|
||||||
@ -31,7 +31,7 @@ void main() => runApp(
|
|||||||
debugShowCheckedModeBanner: false,
|
debugShowCheckedModeBanner: false,
|
||||||
theme: appTheme,
|
theme: appTheme,
|
||||||
routes: <String, WidgetBuilder>{
|
routes: <String, WidgetBuilder>{
|
||||||
'/': (context) => OpenLPRemoteApp(),
|
'/': (context) => OpenLPMobileRemoteApp(),
|
||||||
'/settings': (context) => Settings(),
|
'/settings': (context) => Settings(),
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
@ -27,12 +27,12 @@ import 'widgets/search_floating_button.dart';
|
|||||||
import 'screens/service_list_view.dart';
|
import 'screens/service_list_view.dart';
|
||||||
import 'screens/slides_list_view.dart';
|
import 'screens/slides_list_view.dart';
|
||||||
|
|
||||||
class OpenLPRemoteApp extends StatefulWidget {
|
class OpenLPMobileRemoteApp extends StatefulWidget {
|
||||||
@override
|
@override
|
||||||
_OpenLPRemoteAppState createState() => _OpenLPRemoteAppState();
|
_OpenLPMobileRemoteAppState createState() => _OpenLPMobileRemoteAppState();
|
||||||
}
|
}
|
||||||
|
|
||||||
class _OpenLPRemoteAppState extends State<OpenLPRemoteApp>
|
class _OpenLPMobileRemoteAppState extends State<OpenLPMobileRemoteApp>
|
||||||
with SingleTickerProviderStateMixin {
|
with SingleTickerProviderStateMixin {
|
||||||
TabController tabController;
|
TabController tabController;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user