How do I use Get.toNamed('/nextpage'); in conjunction with animations for OpenContainer use? #3304
BrotherPeng
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
OpenContainer(
openBuilder: (context, closedContainer) {
return MyPage(); _// _
},
openColor: Theme.of(context).cardColor,
onClosed: (success) {},
closedShape: const RoundedRectangleBorder(
borderRadius: BorderRadius.all(Radius.circular(4)),
),
closedColor: Theme.of(context).colorScheme.primary,
closedElevation: 2,
closedBuilder: (context, openContainer) {
return InkWell(
GetPage(
name: _Paths.MYPAGE,
page: () => const MyPage(),
binding: MyPageBinding(),
),
OpenContainer in openBuilder returned MyPage, openContainer(); open this page, I need to use Get to manage page routing jumps as well as url parameters, please help me, bind get
Beta Was this translation helpful? Give feedback.
All reactions