This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |