feature(settings): Верстка экранов настроек

This commit is contained in:
2025-06-16 22:21:23 +03:00
parent 9c5e06884d
commit 5e65118ab4
23 changed files with 1386 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
part of 'settings_cubit.dart';
@freezed
class SettingsState with _$SettingsState {
const factory SettingsState.initial() = _Initial;
const factory SettingsState.profile() = _Profile;
const factory SettingsState.notifications() = _Notifications;
const factory SettingsState.faq() = _Faq;
const factory SettingsState.about() = _About;
}