Files
GitJournal/lib/appstate.dart
Vishesh Handa 519de8fcff Remove onboarding screen
For now just create a local git repo and commit all the changes over
there, we're going to allow the user to first see the app and use it
however they want, and later connect it to a remote git repo.

This commit breaks the app, as the on-boarding screen is no longer
connected so you cannot push to a remote app.
2019-01-21 13:43:33 +01:00

23 lines
463 B
Dart

import 'package:journal/note.dart';
class AppState {
// FIXME: Make these 2 final
String localGitRepoPath = "";
bool localGitRepoConfigured = false;
// FIXME: Rename from 'path' to folderName
String remoteGitRepoPath = "";
bool remoteGitRepoConfigured = false;
// FIXME: Make final
String gitBaseDirectory = "";
bool isLoadingFromDisk;
List<Note> notes;
AppState({
this.isLoadingFromDisk = false,
this.notes = const [],
});
}