Show horizontal scrollbar in Kanban board
This commit is contained in:
parent
1a449cb4f8
commit
fd6cb6b99f
|
|
@ -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(),
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue