onboarding screen proof of concept
All checks were successful
Build and release APK / Build APK (pull_request) Successful in 5m47s

This commit is contained in:
2024-08-17 13:12:46 +02:00
parent 003b8d0f9c
commit eaecc27305
9 changed files with 721 additions and 43 deletions

View File

@@ -10,7 +10,7 @@ import 'package:anyway/modules/trips_overview.dart';
import 'package:anyway/utils/load_trips.dart';
import 'package:anyway/pages/new_trip.dart';
import 'package:anyway/pages/tutorial.dart';
import 'package:anyway/pages/onboarding.dart';
import 'package:anyway/pages/overview.dart';
import 'package:anyway/pages/profile.dart';
@@ -41,7 +41,7 @@ class _BasePageState extends State<BasePage> {
if (widget.mainScreen == "map") {
currentView = NavigationOverview(trip: widget.trip ?? getFirstTrip(trips));
} else if (widget.mainScreen == "tutorial") {
currentView = TutorialPage();
currentView = OnboardingPage();
} else if (widget.mainScreen == "profile") {
currentView = ProfilePage();
}