mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-25 02:48:54 +01:00
Fix buttons in detail pane not scrollable
This commit is contained in:
parent
0a546a29df
commit
afaea7a337
1 changed files with 38 additions and 35 deletions
|
@ -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(),
|
||||
|
|
Loading…
Reference in a new issue