From f3b3a82f0da325e374aae9135ea1b8b77720d834 Mon Sep 17 00:00:00 2001 From: Krille Date: Mon, 25 Mar 2024 15:17:10 +0100 Subject: [PATCH] chore: Follow up new page transition --- lib/config/routes.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/config/routes.dart b/lib/config/routes.dart index 17518124a..17b610696 100644 --- a/lib/config/routes.dart +++ b/lib/config/routes.dart @@ -1,6 +1,6 @@ import 'dart:async'; -import 'package:flutter/cupertino.dart'; +import 'package:flutter/material.dart'; import 'package:go_router/go_router.dart'; @@ -388,5 +388,5 @@ abstract class AppRoutes { (context, animation, secondaryAnimation, child) => FadeTransition(opacity: animation, child: child), ) - : CupertinoPage(child: child); + : MaterialPage(child: child); }