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

View File

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