UNPKG

react-native-split-screen

Version:

![预览图](https://s3.bmp.ovh/imgs/2022/12/22/602e25854a2ff0af.gif)

12 lines (11 loc) 438 B
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;