-
Notifications
You must be signed in to change notification settings - Fork 207
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can I implement tutorial Coach Mark over several Widgets? #69
Comments
Hi @corusm ! |
I thought it could be possible since the Something like this (which is also related to a tutorial): https://flutteragency.com/how-can-multiple-widgets-uses-the-same-global-key-in-flutter/ I tried to use it but i got |
@SalahAdDin Edit: after several more tests, unfortunately, it is not possible to do it this way. I always get "duplicate Global Key". |
I get the same error. Do you have any update with the issue? |
No idea about it. |
I had this issue too, the problem was, I was adding ListView.builder(
...
key: index == 0 ? keyButton1 : null,
...
), |
I have multiple Stateless and Statefull widgets. I wan't to make the tutorial Coach with one button over multiple Files.
Is there a way to pass the Globalkeys oder is there another Method?
The text was updated successfully, but these errors were encountered: