Show horizontal scrollbar in Kanban board

This commit is contained in:
Hillel Coren 2023-02-26 17:38:48 +02:00
parent 1a449cb4f8
commit fd6cb6b99f
1 changed files with 9 additions and 4 deletions

View File

@ -310,10 +310,15 @@ class KanbanViewState extends State<KanbanView> {
child: Stack( child: Stack(
alignment: Alignment.topCenter, alignment: Alignment.topCenter,
children: [ children: [
BoardView( Padding(
padding: const EdgeInsets.symmetric(horizontal: 6),
child: BoardView(
boardViewController: _boardViewController, boardViewController: _boardViewController,
lists: boardList, lists: boardList,
dragDelay: 0, dragDelay: 0,
scrollbar: true,
bottomPadding: 16,
),
), ),
if (state.isLoading || state.isSaving) LinearProgressIndicator(), if (state.isLoading || state.isSaving) LinearProgressIndicator(),
], ],