mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
13 lines
429 B
Dart
13 lines
429 B
Dart
|
import 'package:revanced_manager_flutter/app/app.locator.dart';
|
||
|
import 'package:revanced_manager_flutter/app/app.router.dart';
|
||
|
import 'package:stacked/stacked.dart';
|
||
|
import 'package:stacked_services/stacked_services.dart';
|
||
|
|
||
|
class PatcherViewModel extends BaseViewModel {
|
||
|
final _naviagtionService = locator<NavigationService>();
|
||
|
|
||
|
void navigateToAppSelector() {
|
||
|
_naviagtionService.navigateTo(Routes.appSelectorView);
|
||
|
}
|
||
|
}
|