Skip to content

Instantly share code, notes, and snippets.

View mevans's full-sized avatar

Matthew Evans mevans

View GitHub Profile
@mevans
mevans / split_pane.dart
Created May 2, 2019 07:46
Split Pane for Flutter
class SplitPane extends StatefulWidget {
final Widget child1;
final Widget child2;
final double tapSize;
final double dividerSize;
const SplitPane({Key key, this.child1, this.child2, this.tapSize = 20, this.dividerSize = 5})
: super(key: key);
@override