react-native-screens
Version:
Native navigation primitives for your React Native app.
41 lines (35 loc) • 944 B
text/typescript
export type BlurEffect =
| 'none'
| 'extraLight'
| 'light'
| 'dark'
| 'regular'
| 'prominent'
| 'systemUltraThinMaterial'
| 'systemThinMaterial'
| 'systemMaterial'
| 'systemThickMaterial'
| 'systemChromeMaterial'
| 'systemUltraThinMaterialLight'
| 'systemThinMaterialLight'
| 'systemMaterialLight'
| 'systemThickMaterialLight'
| 'systemChromeMaterialLight'
| 'systemUltraThinMaterialDark'
| 'systemThinMaterialDark'
| 'systemMaterialDark'
| 'systemThickMaterialDark'
| 'systemChromeMaterialDark';
export type ColorScheme = 'light' | 'dark';
export type Direction = 'ltr' | 'rtl';
export type InterfaceOrientation =
| 'all'
| 'allButUpsideDown'
| 'portrait'
| 'portraitUp'
| 'portraitDown'
| 'landscape'
| 'landscapeLeft'
| 'landscapeRight';
export type ScrollEdgeEffect = 'automatic' | 'hard' | 'soft' | 'hidden';
export type UserInterfaceStyle = 'unspecified' | 'light' | 'dark';