caduandrade / multi_split_view

Provides horizontal or vertical multiple split view for Flutter.
https://caduandrade.github.io/multi_split_view/
MIT License
129 stars 24 forks source link

How to adjust divider width for draggable areas #57

Closed jochendev closed 1 month ago

jochendev commented 2 months ago

How to make the dividing line only occupy a small width between the two areas, but the actual draggable area is wider. What do I need to do?

caduandrade commented 2 months ago

Hi @jochendev!

You can change the divider thickness.

MultiSplitViewTheme theme = MultiSplitViewTheme(
        child: multiSplitView,
        data: MultiSplitViewThemeData(dividerThickness: 5));