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 {