Skip to content

Commit 0d1f2bb

Browse files
committed
[UI] files page style
1 parent df7f7e7 commit 0d1f2bb

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

lib/apps/file/list.dart

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,16 +83,19 @@ class _FilesListState extends State<FilesList> {
8383
body: Padding(
8484
padding: const EdgeInsets.all(10.0),
8585
child: Column(
86+
crossAxisAlignment: CrossAxisAlignment.center,
8687
children: [
8788
const SizedBox(height: 10.0),
8889
Wrap(
8990
spacing: 10.0,
9091
runSpacing: 10.0,
9192
children: widgets,
9293
),
93-
const SizedBox(height: 36.0),
94-
Text('Recents', style: Theme.of(context).textTheme.title, textAlign: TextAlign.left),
95-
const SizedBox(height: 16.0),
94+
const SizedBox(height: 20.0),
95+
Align(
96+
alignment: Alignment.centerLeft,
97+
child: Text('Recents', style: Theme.of(context).textTheme.title)
98+
),
9699
Expanded(
97100
child: GridView.extent(
98101
maxCrossAxisExtent: 80.0,

0 commit comments

Comments
 (0)