marco.pms.mobileapp/lib/helpers/theme/app_notifier.dart
Vaibhav Surve 5c53a3f4be Refactor project structure and rename from 'marco' to 'on field work'
- Updated import paths across multiple files to reflect the new package name.
- Changed application name and identifiers in CMakeLists.txt, Runner.rc, and other configuration files.
- Modified web index.html and manifest.json to update the app title and name.
- Adjusted macOS and Windows project settings to align with the new application name.
- Ensured consistency in naming across all relevant files and directories.
2025-11-22 14:20:37 +05:30

57 lines
1.7 KiB
Dart

import 'package:on_field_work/helpers/services/localizations/language.dart';
import 'package:on_field_work/helpers/services/storage/local_storage.dart';
import 'package:on_field_work/helpers/theme/app_theme.dart';
import 'package:on_field_work/helpers/theme/theme_customizer.dart';
import 'package:on_field_work/helpers/widgets/my.dart';
import 'package:flutter/material.dart';
import 'package:shared_preferences/shared_preferences.dart';
class AppNotifier extends ChangeNotifier {
AppNotifier();
Future<void> init() async {
_changeTheme();
notifyListeners();
}
updateTheme(ThemeCustomizer themeCustomizer) {
_changeTheme();
notifyListeners();
LocalStorage.setCustomizer(themeCustomizer);
}
Future<void> updateInStorage(ThemeCustomizer themeCustomizer) async {
SharedPreferences sharedPreferences = await SharedPreferences.getInstance();
sharedPreferences.setString("theme_customizer", themeCustomizer.toJSON());
}
void changeDirectionality(TextDirection textDirection, [bool notify = true]) {
AppTheme.textDirection = textDirection;
My.setTextDirection(textDirection);
if (notify) notifyListeners();
}
Future<void> changeLanguage(Language language,
{bool notify = true, bool changeDirection = true}) async {
if (changeDirection) {
if (language.supportRTL) {
changeDirectionality(TextDirection.rtl, false);
} else {
changeDirectionality(TextDirection.ltr, false);
}
}
await ThemeCustomizer.changeLanguage(language);
if (notify) notifyListeners();
}
void _changeTheme() {
AppTheme.theme = AppTheme.getThemeFromThemeMode();
AppStyle.changeMyTheme();
}
}