From 3bd985647cfb5743fa9fe05681908752358bdad1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20B=C3=B6sche?= Date: Tue, 16 Dec 2025 23:31:42 +0100 Subject: [PATCH] idle --- b0esche_cloud/lib/pages/file_explorer.dart | 44 +++++++++++----------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/b0esche_cloud/lib/pages/file_explorer.dart b/b0esche_cloud/lib/pages/file_explorer.dart index b2305a3..8a87f11 100644 --- a/b0esche_cloud/lib/pages/file_explorer.dart +++ b/b0esche_cloud/lib/pages/file_explorer.dart @@ -387,28 +387,6 @@ class _FileExplorerState extends State { child: _buildTitle(), ), const SizedBox(height: 16), - Row( - children: [ - IconButton( - icon: const Icon( - Icons.arrow_back, - color: AppTheme.primaryText, - ), - splashColor: Colors.transparent, - highlightColor: Colors.transparent, - onPressed: () { - context.read().add( - LoadDirectory(orgId: 'org1', path: '/'), - ); - }, - ), - const Text( - 'Empty Folder', - style: TextStyle(color: AppTheme.primaryText), - ), - ], - ), - const SizedBox(height: 16), BlocBuilder( builder: (context, permState) { if (permState is PermissionLoaded && @@ -478,6 +456,28 @@ class _FileExplorerState extends State { return const SizedBox.shrink(); }, ), + const SizedBox(height: 16), + Row( + children: [ + IconButton( + icon: const Icon( + Icons.arrow_back, + color: AppTheme.primaryText, + ), + splashColor: Colors.transparent, + highlightColor: Colors.transparent, + onPressed: () { + context.read().add( + LoadDirectory(orgId: 'org1', path: '/'), + ); + }, + ), + const Text( + 'Empty Folder', + style: TextStyle(color: AppTheme.primaryText), + ), + ], + ), ], ), );