Skip to content
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 to dismiss slidableAction when using other widget #458

Open
rt234cw opened this issue Jan 28, 2024 · 1 comment
Open

how to dismiss slidableAction when using other widget #458

rt234cw opened this issue Jan 28, 2024 · 1 comment

Comments

@rt234cw
Copy link

rt234cw commented Jan 28, 2024

For example, I am using TextButton. How do I dismiss the sliablaction after pressing the button?

Slidable(
            endActionPane: ActionPane(
              motion: const ScrollMotion(),
              children: [
                TextButton(onPressed: () {}, child: const Text('cancel'),),
              ],
            ),
@samih93
Copy link

samih93 commented Mar 30, 2024

fianl slidableController = SlidableController(this);
Slidable(
controller: slidableController,
// Specify a key if the Slidable is dismissible.
key: const ValueKey(0),
motion: const ScrollMotion(),
children: [
TextButton(onPressed: () {
slidableController .close();
}, child: const Text('cancel'),),
],

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants