Skip to content

Commit

Permalink
fix home screen animation controller freeze bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabi-02 committed Feb 25, 2024
1 parent 76607ae commit d464ddd
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions frontend/lib/tabs/home_tab.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,10 @@ class _HomeTabState extends State<HomeTab> with TickerProviderStateMixin {
bool _loading = true;
bool _isSmallPhone = false;
bool _isTablet = false;
late AnimationController _controller;

@override
void initState() {
super.initState();
_controller = AnimationController(
duration: const Duration(milliseconds: 600),
vsync: this,
)..forward();
setState(() {
_loading = false;
});
Expand Down

0 comments on commit d464ddd

Please sign in to comment.