add page for aur search
install aur package by button click
This commit is contained in:
@ -1,3 +1,4 @@
|
||||
import 'package:aurcache/screens/aur_screen.dart';
|
||||
import 'package:aurcache/screens/build_screen.dart';
|
||||
import 'package:aurcache/screens/builds_screen.dart';
|
||||
import 'package:aurcache/screens/dashboard_screen.dart';
|
||||
@ -40,6 +41,10 @@ final appRouter = GoRouter(
|
||||
path: '/packages',
|
||||
builder: (context, state) => const PackagesScreen(),
|
||||
),
|
||||
GoRoute(
|
||||
path: '/aur',
|
||||
builder: (context, state) => AurScreen(),
|
||||
),
|
||||
GoRoute(
|
||||
path: '/package/:id',
|
||||
builder: (context, state) {
|
||||
|
Reference in New Issue
Block a user