2019-03-26 18:19:21 +00:00
|
|
|
import * as React from "react";
|
|
|
|
import { StyleProp, ViewStyle } from "react-native";
|
2017-08-07 08:57:25 +00:00
|
|
|
|
|
|
|
export interface BlurViewProperties {
|
2019-03-26 17:51:07 +00:00
|
|
|
blurType:
|
2019-03-26 18:19:21 +00:00
|
|
|
| "xlight"
|
|
|
|
| "light"
|
|
|
|
| "dark"
|
2019-03-27 12:57:24 +00:00
|
|
|
// tvOS and iOS 10+ only
|
2019-03-26 18:19:21 +00:00
|
|
|
| "regular"
|
2019-03-27 12:57:24 +00:00
|
|
|
| "prominent"
|
|
|
|
// tvOS only
|
|
|
|
| "extraDark";
|
2017-08-07 08:57:25 +00:00
|
|
|
blurAmount?: number; // 0 - 100
|
2019-03-26 17:51:07 +00:00
|
|
|
style?: StyleProp<ViewStyle>;
|
2017-10-01 13:56:33 +00:00
|
|
|
viewRef?: number | null;
|
2017-08-07 08:57:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class BlurView extends React.Component<BlurViewProperties, {}> {}
|
|
|
|
|
|
|
|
export interface VibrancyViewProperties extends BlurViewProperties {}
|
|
|
|
|
|
|
|
export class VibrancyView extends React.Component<VibrancyViewProperties, {}> {}
|