diff --git a/lib/screens/folder_listing.dart b/lib/screens/folder_listing.dart
index 9d2a8d16..9efd245d 100644
--- a/lib/screens/folder_listing.dart
+++ b/lib/screens/folder_listing.dart
@@ -120,7 +120,7 @@ class _FolderListingScreenState extends State<FolderListingScreen> {
           if (selectedFolder != null) action,
         ],
       ),
-      body: treeView,
+      body: Scrollbar(child: treeView),
       drawer: AppDrawer(),
       floatingActionButton: CreateFolderButton(),
     );
diff --git a/lib/screens/journal_listing.dart b/lib/screens/journal_listing.dart
index 07f3daf9..f534c1bc 100644
--- a/lib/screens/journal_listing.dart
+++ b/lib/screens/journal_listing.dart
@@ -64,7 +64,7 @@ class JournalListingScreen extends StatelessWidget {
       floatingActionButton: createButton,
       body: Center(
         child: RefreshIndicator(
-            child: journalList,
+            child: Scrollbar(child: journalList),
             onRefresh: () async {
               try {
                 await container.syncNotes();