JournalListing: Only show the notes in that folder

Do not show all notes recursively, by default. The default screen will
now only show the notes in the root folder.
This commit is contained in:
Vishesh Handa
2019-12-04 01:25:31 +01:00
parent c8bfa0e2a0
commit d607bad299
2 changed files with 8 additions and 3 deletions

View File

@ -10,6 +10,7 @@ class HomeScreen extends StatelessWidget {
final container = StateContainer.of(context);
final appState = container.appState;
return JournalListingScreen(appState.notes);
return JournalListingScreen(noteFolder: appState.noteFolder);
// return FolderListingScreen();
}
}