Skip to content

Commit

Permalink
fix: remove height of sheet headers (#532)
Browse files Browse the repository at this point in the history
  • Loading branch information
poppingmoon authored Jan 27, 2025
1 parent a522a8c commit d40dc32
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/view/widget/drive_folder_sheet.dart
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class DriveFolderSheet extends ConsumerWidget {
title: Text(folder.name),
subtitle: TimeWidget(time: folder.createdAt),
),
const Divider(),
const Divider(height: 0.0),
ListTile(
leading: const Icon(Icons.settings),
title: Text(t.misskey.renameFolder),
Expand Down
2 changes: 1 addition & 1 deletion lib/view/widget/url_sheet.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class UrlSheet extends StatelessWidget {
shrinkWrap: true,
children: [
ListTile(title: Text(url)),
const Divider(),
const Divider(height: 0.0),
ListTile(
leading: const Icon(Icons.open_in_browser),
title: Text(t.aria.openInInternalBrowser),
Expand Down

0 comments on commit d40dc32

Please sign in to comment.