This commit is contained in:
2020-12-28 00:19:04 -05:00
parent 86c845b49b
commit c378a6203c
33 changed files with 833 additions and 200 deletions

View File

@@ -19,10 +19,11 @@ import '../widgets/mobile/mobile_navigation_drawer.dart';
import 'package:responsive_builder/responsive_builder.dart';
class Home extends StatefulWidget {
final Locale locale;
Locale locale;
final String title;
Home(this.locale, {Key key, this.title}) : super(key: key);
Home(Locale locale, {Key key, this.title}) :
locale = locale ?? store.state.locale;
@override
State<StatefulWidget> createState() {