mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-09-15 16:03:34 +08:00

Do not show all notes recursively, by default. The default screen will now only show the notes in the root folder.
17 lines
448 B
Dart
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();
|
|
}
|
|
}
|