mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-10-19 19:43:40 +08:00
14 lines
251 B
Dart
14 lines
251 B
Dart
import 'package:journal/note.dart';
|
|
|
|
class AppState {
|
|
bool onBoardingCompleted;
|
|
bool isLoadingFromDisk;
|
|
List<Note> notes;
|
|
|
|
AppState({
|
|
this.onBoardingCompleted = false,
|
|
this.isLoadingFromDisk = false,
|
|
this.notes = const [],
|
|
});
|
|
}
|