ArcaneResizable.splitView constructor
ArcaneResizable.splitView({})
Implementation
factory ArcaneResizable.splitView({
required Widget top,
required Widget bottom,
double topSize = 50,
double topMinSize = 20,
double topMaxSize = 80,
Key? key,
}) {
return ArcaneResizable(
key: key,
direction: ResizeDirection.vertical,
panels: [
ResizablePanelData(
child: top,
defaultSize: topSize,
minSize: topMinSize,
maxSize: topMaxSize,
),
ResizablePanelData(child: bottom),
],
);
}