// @flow import * as React from 'react'; import {View} from 'react-native'; type ViewProps = React.ElementProps; type ViewStyleProp = $PropertyType; export type BlurType = | 'xlight' | 'light' | 'dark' // iOS 13+ only | "chromeMaterial" | "material" | "thickMaterial" | "thinMaterial" | "ultraThinMaterial" | "chromeMaterialDark" | "materialDark" | "thickMaterialDark" | "thinMaterialDark" | "ultraThinMaterialDark" | "chromeMaterialLight" | "materialLight" | "thickMaterialLight" | "thinMaterialLight" | "ultraThinMaterialLight" // tvOS and iOS 10+ only | 'regular' | 'prominent' // tvOS only | 'extraDark'; export type BlurViewProps = { blurType?: BlurType, blurAmount?: number, // 0 - 100, reducedTransparencyFallbackColor?: String, style?: ?ViewStyleProp, }; export class BlurView extends React.Component { static defaultProps = { blurType: 'dark', blurAmount: 10, }; } export type VibrancyViewProps = BlurViewProps; export class VibrancyView extends React.Component { static defaultProps = { blurAmount: 10, }; }