Skip to content

Commit

Permalink
fix: update main.dart (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
shittyday authored Dec 17, 2024
1 parent ff8bee2 commit dd02b6f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@ class ExamplesMenuScreen extends StatelessWidget {
appBar: AppBar(
title: const Text('Examples'),
),
body: ListView(
shrinkWrap: true,
body: Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: [
ListTile(
leading: const Icon(Icons.cloud),
Expand Down

0 comments on commit dd02b6f

Please sign in to comment.