The SplitView layout implements a master-detail interface, similar to Apple's UISplitViewController. It is currently implemented only on iOS.
It consists of two main parts:
master: The smaller screen or sidebar.detail: The larger screen that flexes to fill the remaining space.
You can define a SplitView within a layout object by providing master and detail keys, each containing a component configuration.
{
id: 'PROFILE_TAB',
master: {
component: {
id: 'MASTER_SCREEN',
name: 'MasterScreen'
}
},
detail: {
component: {
id: 'DETAIL_SCREEN',
name: 'DetailScreen'
}
}
}