Skip to content

Commit

Permalink
🐛 title and icon buttons overlap
Browse files Browse the repository at this point in the history
  • Loading branch information
niuhuan committed Nov 20, 2023
1 parent 3a09a82 commit 482eb4c
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion lib/screens/comic_info_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,18 @@ class _ComicInfoScreenState extends State<ComicInfoScreen> with RouteAware {
foregroundColor: theme.textTheme.bodyMedium?.color,
backgroundColor: Colors.transparent,
elevation: .0,
actions: const [],
actions: [
IconButton(
onPressed: () async {},
icon: Icon(Icons.add),
color: Colors.transparent,
),
IconButton(
onPressed: () async {},
icon: Icon(Icons.add),
color: Colors.transparent,
),
],
),
],
),
Expand Down

0 comments on commit 482eb4c

Please sign in to comment.