UNPKG

@crossed/sheet

Version:

A Cross Platform(Android & iOS) ActionSheet with a robust and flexible api, native performance and zero dependency code for react native. Create anything you want inside ActionSheet.

44 lines (42 loc) 1.04 kB
/** * Copyright (c) Paymium. * * This source code is licensed under the MIT license found in the * LICENSE file in the root of this projects source tree. */ import ActionSheet from './ActionSheet'; export { SheetManager, setBaseZIndexForActionSheets, getSheetStack, isRenderedOnTop, } from './sheetmanager'; export { registerSheet, type SheetProps, SheetProvider, useProviderContext, useSheetIDContext, useSheetRef, useSheetPayload, } from './provider'; export { type ActionSheetProps, type SheetDefinition, type Sheets, type ActionSheetRef, } from './types'; export { useScrollHandlers } from './hooks/use-scroll-handlers'; export { useSheetRouter, useSheetRouteParams, type Route, type RouteScreenProps, type Router, type RouteDefinition, } from './hooks/use-router'; export { ScrollView } from './views/ScrollView'; export { FlatList } from './views/FlatList'; export { SectionList } from './views/SectionList'; export { FlashList } from './views/FlashList'; export default ActionSheet;