fix: use startWithIntroScreen instead of showIntroduction boolean for checking on which screen to start

This commit is contained in:
Joey Boerwinkel 2024-04-05 11:44:59 +02:00
parent e012b8d41e
commit bd1d6e5bf4

View file

@ -19,7 +19,7 @@ class NavigatorStartUserStory extends StatelessWidget {
@override
Widget build(BuildContext context) {
if (configuration.showIntroduction) {
if (configuration.startWithIntroScreen) {
return _introduction(configuration, context, onComplete);
}