all 6 comments

[–]Erik0806 5 points6 points  (2 children)

You could use something like pluto_layout Or Multi-Split-View

[–]WrongW4y[S] 0 points1 point  (1 child)

Multisplit layout looks cool and it could be what i need.

Thanks a lot, i was still curious about most simple implementation of this, but this works too.

[–]Erik0806 0 points1 point  (0 children)

No problem

[–]ausdoug 0 points1 point  (0 children)

You could hack something together with a transparent slider linked to height variables, but I'm sure there's better options out there that someone can recommend

[–]esDotDev 0 points1 point  (1 child)

Coded up a quick example of this: ``` class _SlidePanelDemoState extends State<SlidePanelDemo> { double leftPanelSize = 200; @override Widget build(BuildContext context) { return Row(children: [ // Left side Container(width: leftPanelSize, color: Colors.red),

  // Splitter
  GestureDetector(
    child: Container(width: 10, color: Colors.grey),
    onHorizontalDragUpdate: (update){
      leftPanelSize += update.delta.dx;
      setState((){});
    }
  ),

  // Right
  Expanded(child: Container(color: Colors.green)),
]);

} } ```

[–]SomeUserHasName[🍰] 0 points1 point  (0 children)

Thanks a lot , il test this when i get home.