mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
33 lines
979 B
Dart
33 lines
979 B
Dart
import 'package:revanced_manager/app/app.locator.dart';
|
|
import 'package:revanced_manager/app/app.router.dart';
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
|
import 'package:stacked/stacked.dart';
|
|
import 'package:root/root.dart';
|
|
import 'package:stacked_services/stacked_services.dart';
|
|
|
|
class RootCheckerViewModel extends BaseViewModel {
|
|
final NavigationService _navigationService = locator<NavigationService>();
|
|
bool isRooted = false;
|
|
|
|
Future<void> navigateAsRoot() async {
|
|
bool? res = await Root.isRooted();
|
|
isRooted = res != null && res == true;
|
|
if (isRooted) {
|
|
await navigateToHome();
|
|
} else {
|
|
notifyListeners();
|
|
}
|
|
}
|
|
|
|
Future<void> navigateAsNonRoot() async {
|
|
isRooted = false;
|
|
await navigateToHome();
|
|
}
|
|
|
|
Future<void> navigateToHome() async {
|
|
final prefs = await SharedPreferences.getInstance();
|
|
await prefs.setBool('isRooted', isRooted);
|
|
_navigationService.navigateTo(Routes.navigation);
|
|
}
|
|
}
|