Skip to content

Commit

Permalink
point to HomeScreen from landing_page
Browse files Browse the repository at this point in the history
  • Loading branch information
ComputerOnFire committed Oct 23, 2021
1 parent ea31d91 commit f8bed0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/feature/onboard/ui/screen/landing_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:treehousesble/common/bloc/bluetooth_cubit.dart';
import 'package:treehousesble/common/bloc/bluetooth_state.dart';
import 'package:treehousesble/feature/dashboard/screen/dashboard_page.dart';
import 'package:treehousesble/feature/dashboard/screen/search_rpi_screen.dart';
import 'package:treehousesble/feature/dashboard/screen/home_screen.dart';

import 'onboard_page.dart';

Expand All @@ -17,7 +17,7 @@ class LandingPage extends StatelessWidget {
if (state is FirstTimeAppOpen) {
return OnboardPage();
} else {
return SearchRpiScreen();
return HomeScreen();
}
},
);
Expand Down

0 comments on commit f8bed0c

Please sign in to comment.