fix: result of should show is now handled properly

This commit is contained in:
Jacques Doeleman 2022-11-10 15:15:27 +01:00
parent 7e88d7238d
commit 555502a426

View file

@ -49,7 +49,7 @@ class _IntroductionState extends State<Introduction> {
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 {