The SplitterContent element is used as a child element of Splitter. It contains the main content of the page while SplitterSide contains the list.
<Splitter>
<SplitterSide
side="left"
width={200}
isSwipeable={true}>
<Page> Page Left </Page>
</SplitterSide>
<SplitterContent>
<Page> Page Content </Page>
</SplitterContent>
<SplitterSide
side="right"
width={300}
collapse={!this.state.showRight}
isOpen={this.state.openRight}
onClose={this.handleRightClose.bind(this)}
onOpen={this.handleRightOpen.bind(this)}
isSwipeable={true}>
<Page> Page Right </Page>
</SplitterSide>
</Splitter>
If you have any questions, use our Community Forum or talk to us on Discord chat. The Onsen UI team and your peers in the community will work together to help solve your issues.
For bug reports and feature requests use our GitHub Issues page.