react-native-twopane-navigation
Version:
React Native package for dual screen devices navigation support (Surface Duo)
10 lines (9 loc) • 384 B
TypeScript
import { IPaneComponent } from '../../utilities/interfaces';
import { WindowRect, DeviceOrientation } from 'react-native-dualscreeninfo';
interface IPaneRendererProps {
paneComponents: IPaneComponent[];
paneRects: WindowRect[];
orientation: DeviceOrientation;
}
declare const PaneRenderer: (props: IPaneRendererProps) => JSX.Element;
export default PaneRenderer;