Skip to content

Commit

Permalink
[UI] files page style
Browse files Browse the repository at this point in the history
  • Loading branch information
sunhuachuang committed Jul 5, 2021
1 parent df7f7e7 commit 0d1f2bb
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions lib/apps/file/list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -83,16 +83,19 @@ class _FilesListState extends State<FilesList> {
body: Padding(
padding: const EdgeInsets.all(10.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
const SizedBox(height: 10.0),
Wrap(
spacing: 10.0,
runSpacing: 10.0,
children: widgets,
),
const SizedBox(height: 36.0),
Text('Recents', style: Theme.of(context).textTheme.title, textAlign: TextAlign.left),
const SizedBox(height: 16.0),
const SizedBox(height: 20.0),
Align(
alignment: Alignment.centerLeft,
child: Text('Recents', style: Theme.of(context).textTheme.title)
),
Expanded(
child: GridView.extent(
maxCrossAxisExtent: 80.0,
Expand Down

0 comments on commit 0d1f2bb

Please sign in to comment.