Merge pull request #2 from Iconica-Development/bugfix/should_show

fix: result of should show is now handled properly
This commit is contained in:
Gorter-dev 2022-11-10 15:28:01 +01:00 committed by GitHub
commit 38a62c2af8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 {