From 555502a426a5ed98ec50dc689b711f64ab1eb433 Mon Sep 17 00:00:00 2001 From: Jacques Doeleman Date: Thu, 10 Nov 2022 15:15:27 +0100 Subject: [PATCH] fix: result of should show is now handled properly --- lib/flutter_introduction.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/flutter_introduction.dart b/lib/flutter_introduction.dart index 9024f0a..77cb705 100644 --- a/lib/flutter_introduction.dart +++ b/lib/flutter_introduction.dart @@ -49,7 +49,7 @@ class _IntroductionState extends State { return FutureBuilder( future: _service.shouldShow(), builder: (context, snapshot) { - if (snapshot.data == null || !snapshot.data!) { + if (snapshot.data == null || snapshot.data!) { return IntroductionScreen( options: widget.options, onComplete: () async {