This commit is contained in:
2026-06-28 18:33:46 +03:00
parent 65ea30339d
commit 4727835402
22 changed files with 534 additions and 54 deletions
+5
View File
@@ -8,6 +8,7 @@ import '../features/categories/screen.dart';
import '../features/settings/screen.dart';
import '../features/settings/categories/category_manager_screen.dart';
import '../shared/models/transaction.dart';
import '../shared/paywall/paywall_screen.dart';
final _shellKey = GlobalKey<NavigatorState>();
@@ -49,6 +50,10 @@ final appRouter = GoRouter(
path: '/settings/categories',
builder: (context, state) => const CategoryManagerScreen(),
),
GoRoute(
path: '/paywall',
builder: (context, state) => const PaywallScreen(),
),
],
);