Files
GitJournal/lib/screens/home_screen.dart
Vishesh Handa d607bad299 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.
2019-12-04 01:30:10 +01:00

17 lines
448 B
Dart

import 'package:flutter/material.dart';
import 'package:gitjournal/state_container.dart';
import 'journal_listing.dart';
import 'folder_listing.dart';
class HomeScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
final container = StateContainer.of(context);
final appState = container.appState;
return JournalListingScreen(noteFolder: appState.noteFolder);
// return FolderListingScreen();
}
}