mirror of
https://github.com/Iconica-Development/flutter_introduction.git
synced 2025-05-18 19:43:44 +02:00
Merge pull request #2 from Iconica-Development/bugfix/should_show
fix: result of should show is now handled properly
This commit is contained in:
commit
38a62c2af8
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue