We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I want to show a text widget that says "no cards remaining" when I swipe all of the cards. Does anybody know how this is possible?
The text was updated successfully, but these errors were encountered:
I solved this by placing the widget in a Stack, so its laying behind the tinderStack. When the stack is empty, the other widget will be shown.
Here an example:
SizedBox( child: Stack( children: [ RefreshButton( topMsg: "No more found", bottomMsg: "Load again", onPress: () { _doSomeThing(); }, ), TinderStack( items: items, cardController: cardController, ), ], ), );
Sorry, something went wrong.
No branches or pull requests
I want to show a text widget that says "no cards remaining" when I swipe all of the cards. Does anybody know how this is possible?
The text was updated successfully, but these errors were encountered: