Fix buttons in detail pane not scrollable

This commit is contained in:
Ming Ming 2021-08-29 02:45:28 +08:00
parent 0a546a29df
commit afaea7a337

View file

@ -113,7 +113,9 @@ class _ViewerDetailPaneState extends State<ViewerDetailPane> {
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Row(
children: [
if (widget.album != null &&
widget.album!.albumFile?.isOwned(widget.account.username) ==
@ -151,6 +153,7 @@ class _ViewerDetailPaneState extends State<ViewerDetailPane> {
),
],
),
),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 32),
child: const Divider(),