This commit is contained in:
2026-06-29 16:04:15 +03:00
parent 58bfc6b12c
commit 4f56e4983c
13 changed files with 869 additions and 7 deletions
+5
View File
@@ -11,6 +11,7 @@ import '../features/onboarding/screen.dart';
import '../shared/models/transaction.dart';
import '../shared/paywall/paywall_screen.dart';
import '../shared/services/onboarding_service.dart';
import '../shared/widgets/pro_screen.dart';
final _shellKey = GlobalKey<NavigatorState>();
@@ -67,6 +68,10 @@ final appRouter = GoRouter(
path: '/paywall',
builder: (context, state) => const PaywallScreen(),
),
GoRoute(
path: '/pro',
builder: (context, state) => const ProScreen(),
),
],
);