This commit is contained in:
Juan Gilsanz Polo
2024-02-29 14:19:36 +01:00
parent 1a10f6ebae
commit 6918eec469
5 changed files with 43 additions and 3 deletions

View File

@@ -79,7 +79,10 @@ class Bookmarks extends _$Bookmarks {
routes: [
GoRoute(
path: _webViewRoute,
builder: (context, state) => WebViewScreen(bookmark: state.extra as Bookmark),
pageBuilder: (context, state) => CustomTransitionPage(
child: WebViewScreen(bookmark: state.extra as Bookmark),
transitionsBuilder: (context, animation, secondaryAnimation, child) => child,
),
),
],
),