react-native-split-screen
Version:

12 lines (11 loc) • 438 B
TypeScript
import React from 'react';
import { ViewStyle } from 'react-native';
declare type SplitViewType = {
master: React.ReactElement | undefined;
detail: React.ReactElement | undefined;
containerStyle?: ViewStyle;
masterStyle?: ViewStyle;
detailStyle?: ViewStyle;
};
declare const SplitView: ({ master, detail, containerStyle, masterStyle, detailStyle, }: SplitViewType) => JSX.Element;
export default SplitView;