Skip to content

Commit 4117baf

Browse files
committed
Make some more space for the scrollbar
1 parent c7a2bae commit 4117baf

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

lib/project_view/configs/views/base.dart

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,10 @@ class ConfigOptionsList extends StatelessWidget {
168168
backgroundColor: Colors.transparent,
169169
pinned: true,
170170
),
171-
SliverList.list(children: children),
171+
SliverPadding(
172+
padding: const .only(right: 8), //space for the scrollbar
173+
sliver: SliverList.list(children: children),
174+
),
172175
],
173176
);
174177
}

0 commit comments

Comments
 (0)