OpenLPRemote renamed to OpenLPMobileRemote

This commit is contained in:
Daniel Borges 2019-08-08 11:18:53 -03:00
parent a10d2f7cc7
commit 9270ade460
2 changed files with 5 additions and 5 deletions

View File

@ -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(),
}, },
), ),

View File

@ -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;