fixed other shit
This commit is contained in:
parent
5079e0cb29
commit
9f5e57eec6
@ -33,13 +33,13 @@ import 'package:filcnaplo/ui/filter/sort.dart';
|
||||
import 'package:i18n_extension/i18n_extension.dart';
|
||||
|
||||
class HomePage extends StatefulWidget {
|
||||
const HomePage({Key? key}) : super(key: key);
|
||||
const HomePage({super.key});
|
||||
|
||||
@override
|
||||
_HomePageState createState() => _HomePageState();
|
||||
HomePageState createState() => HomePageState();
|
||||
}
|
||||
|
||||
class _HomePageState extends State<HomePage> with TickerProviderStateMixin {
|
||||
class HomePageState extends State<HomePage> with TickerProviderStateMixin {
|
||||
late TabController _tabController;
|
||||
late UserProvider user;
|
||||
late SettingsProvider settings;
|
||||
|
@ -16,13 +16,13 @@ import 'package:provider/provider.dart';
|
||||
import 'live_card.i18n.dart';
|
||||
|
||||
class LiveCard extends StatefulWidget {
|
||||
const LiveCard({Key? key}) : super(key: key);
|
||||
const LiveCard({super.key});
|
||||
|
||||
@override
|
||||
_LiveCardState createState() => _LiveCardState();
|
||||
LiveCardStateA createState() => LiveCardStateA();
|
||||
}
|
||||
|
||||
class _LiveCardState extends State<LiveCard> {
|
||||
class LiveCardStateA extends State<LiveCard> {
|
||||
late void Function() listener;
|
||||
late UserProvider _userProvider;
|
||||
late LiveCardProvider liveCard;
|
||||
@ -285,8 +285,8 @@ class _LiveCardState extends State<LiveCard> {
|
||||
animation: primaryAnimation,
|
||||
secondaryAnimation: secondaryAnimation,
|
||||
transitionType: SharedAxisTransitionType.horizontal,
|
||||
child: child,
|
||||
fillColor: Theme.of(context).scaffoldBackgroundColor,
|
||||
child: child,
|
||||
);
|
||||
},
|
||||
child: child,
|
||||
|
Loading…
x
Reference in New Issue
Block a user