Skip to content

Instantly share code, notes, and snippets.

@dabit3
Last active January 22, 2016 15:12
Show Gist options
  • Save dabit3/61956afd9043d005ec2d to your computer and use it in GitHub Desktop.
Save dabit3/61956afd9043d005ec2d to your computer and use it in GitHub Desktop.
Creating A Custom Toast Module for React Native Part 1
'use strict';
import React, {
AppRegistry,
Component,
StyleSheet,
Text,
View,
TouchableHighlight,
Animated
} from 'react-native';
class toasts extends Component {
constructor(props) {
super(props)
this.animatedValue = new Animated.Value(-70)
}
callToast() {
Animated.timing(
this.animatedValue,
{
toValue: 0,
duration: 350
}).start(this.closeToast())
}
closeToast() {
setTimeout(() => {
Animated.timing(
this.animatedValue,
{
toValue: -70,
duration: 350
}).start()
}, 2000)
}
render() {
return (
<View>
<View style={styles.container}>
<View style={ styles.buttonContainer }>
<TouchableHighlight onPress={ () => this.callToast() } underlayColor="ddd" style={{ height:60, justifyContent: 'center', alignItems: 'center', backgroundColor: 'ededed', borderWidth: 1, borderColor: 'ddd' }}>
<Text>Open Success Toast</Text>
</TouchableHighlight>
</View>
</View>
<Animated.View style={{ transform: [{ translateY: this.animatedValue }], height: 70, backgroundColor: 'green', position: 'absolute',left:0, top:0, right:0, justifyContent: 'center' }}>
<Text style={{ marginLeft: 10, color: 'white', fontSize:16, fontWeight: 'bold' }}>
Hello from Toast!
</Text>
</Animated.View>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
marginTop: 70
},
buttonContainer: {
marginTop:10
}
});
AppRegistry.registerComponent('toasts', () => toasts);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment