You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I try to set barrierDismissible to true, but not working.
ModalExprollableRouteBuilder(
barrierDismissible: true,
pageBuilder: (context, _, __) => const CustomView(),),
Thanks.
The text was updated successfully, but these errors were encountered:
RoyGuanyu
changed the title
How to tap inset to dismiss?
How to tap inset to dismiss and tap region to expand?
Jan 11, 2024
You can use ExprollablePageController. animateViewportInsetTo to enlarge your card with animation. An example code is available here.
I try to set barrierDismissible to true, but not working.
Can you post a minimal code to reproduce your problem? Since barrierDismissible is enabled by default, the dialog should close if you touch the barrier without explicitly setting it to true.
Is it possible to
using ModalExprollableRouteBuilder.
Navigator.of(context).push(
ModalExprollableRouteBuilder(
pageBuilder: (context, _, __) => ExprollablePageView(...),
),
);
I try to set barrierDismissible to true, but not working.
ModalExprollableRouteBuilder(
barrierDismissible: true,
pageBuilder: (context, _, __) => const CustomView(),),
Thanks.
The text was updated successfully, but these errors were encountered: