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
Then you can use your custom Page instead of MaterialPage:
returnFlowBuilder<MyFlowState>(
state:FlowState.initial,
onGeneratePages: (state, pages) {
// We can use `MyPage` with our custom transition animation :)return [MyPage(child:MyWidget())];
},
);
Is your feature request related to a problem? Please describe.
Same as title.
Describe the solution you'd like
Would be nice to have page transition animations like we have when using
Navigator
's methods.Describe alternatives you've considered
We could provide a
MaterialPageRoute
or equivalent in place ofMaterialPage
.The text was updated successfully, but these errors were encountered: