react-native-blur/examples/Basic/index.android.js

153 lines
3.3 KiB
JavaScript
Raw Normal View History

/**
* Basic [Android] Example for react-native-blur
* https://github.com/react-native-community/react-native-blur
*/
'use strict';
import React, { Component } from 'react';
import {
AppRegistry,
2016-04-11 04:13:01 +00:00
Image,
findNodeHandle,
StyleSheet,
Text,
View,
Dimensions,
Switch,
InteractionManager,
} from 'react-native';
import AndroidSegmented from 'react-native-segmented-android';
import { BlurView } from 'react-native-blur';
2016-04-11 04:13:01 +00:00
const BLUR_TYPES = ['xlight', 'light', 'dark'];
class Basic extends Component {
constructor() {
super();
this.state = {
showBlur: true,
viewRef: null,
activeSegment: 2,
blurType: 'dark',
};
2016-04-11 04:13:01 +00:00
}
imageLoaded() {
// Workaround for a tricky race condition on initial load.
InteractionManager.runAfterInteractions(() => {
setTimeout(() => {
this.setState({ viewRef: findNodeHandle(this.refs.backgroundImage) });
}, 500);
});
}
_onChange(selected) {
this.setState({
activeSegment: selected,
blurType: BLUR_TYPES[selected],
});
}
renderBlurView() {
const tintColor = ['#ffffff', '#000000'];
2019-03-26 18:19:21 +00:00
if (this.state.blurType === 'xlight') {tintColor.reverse();}
return (
<View style={styles.container}>
{this.state.viewRef && <BlurView
viewRef={this.state.viewRef}
style={styles.blurView}
blurRadius={9}
blurType={this.state.blurType}
// The following props are also available on Android:
// blurRadius={20}
// downsampleFactor={10}
// overlayColor={'rgba(0, 0, 255, .6)'} // set a blue overlay
/>}
<Text style={[styles.text, { color: tintColor[0] }]}>
Blur component (Android)
</Text>
<AndroidSegmented
tintColor={tintColor}
style={{
width: Dimensions.get('window').width,
height: 28,
justifyContent: 'center',
alignItems: 'center',
}}
childText={BLUR_TYPES}
2019-03-26 18:19:21 +00:00
orientation="horizontal"
selectedPosition={this.state.activeSegment}
onChange={this._onChange.bind(this)} />
</View>
2019-03-26 18:19:21 +00:00
);
2016-04-11 04:13:01 +00:00
}
render() {
return (
<View style={styles.container}>
<Image
source={require('./bgimage.jpeg')}
style={styles.image}
ref={'backgroundImage'}
onLoadEnd={this.imageLoaded.bind(this)} />
{ this.state.showBlur ? this.renderBlurView() : null }
<View
style={styles.blurToggle}>
<Switch
onValueChange={(value) => this.setState({showBlur: value})}
value={this.state.showBlur} />
</View>
</View>
2016-04-11 04:13:01 +00:00
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
backgroundColor: 'transparent',
},
image: {
position: 'absolute',
left: 0,
top: 0,
bottom: 0,
right: 0,
resizeMode: 'cover',
width: null,
height: null,
},
blurView: {
position: 'absolute',
left: 0,
top: 0,
bottom: 0,
right: 0,
},
text: {
fontSize: 22,
fontWeight: 'bold',
textAlign: 'center',
margin: 10,
color: '#FFFFFF',
},
blurToggle: {
position: 'absolute',
top: 30,
right: 10,
alignItems: 'flex-end',
},
});
AppRegistry.registerComponent('Basic', () => Basic);