feat(directory): center align buttons in DirectoryMainScreen and adjust padding in Directory and Notes views

This commit is contained in:
Vaibhav Surve 2025-07-07 13:48:57 +05:30
parent 45ce53539c
commit 5e8158a410
3 changed files with 3 additions and 3 deletions

View File

@ -86,7 +86,7 @@ class DirectoryMainScreen extends StatelessWidget {
child: Obx(() {
final isNotesView = controller.isNotesView.value;
return Row(
mainAxisAlignment: MainAxisAlignment.end,
mainAxisAlignment: MainAxisAlignment.center,
children: [
IconButton(
tooltip: 'Directory View',

View File

@ -31,7 +31,7 @@ class DirectoryView extends StatelessWidget {
children: [
// Search + Filter + Toggle
Padding(
padding: MySpacing.xy(8, 10),
padding: MySpacing.xy(8, 8),
child: Row(
children: [
// Search Field

View File

@ -76,7 +76,7 @@ class NotesView extends StatelessWidget {
children: [
/// 🔍 Search + Refresh (Top Row)
Padding(
padding: MySpacing.xy(8, 10),
padding: MySpacing.xy(8, 8),
child: Row(
children: [
Expanded(