-
Notifications
You must be signed in to change notification settings - Fork 2
/
Example.js
33 lines (33 loc) · 858 Bytes
/
Example.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import React from 'react';
import { StyleSheet, Text, View, Animated, Dimensions } from 'react-native';
const { width } = Dimensions.get('screen');
import WaveView from './WaveView';
export default class Example extends React.Component {
render() {
return (
<View style={styles.container}>
<WaveView
height={200}
width={width}
waveColor={'red'}
waveSpeed={'slow'}
waveAmplitude={20}
noOfWaves={80}
wavePosition={'both'}
style={{ alignItems: 'center', justifyContent: 'center' }}
>
<Text>My text goes here</Text>
</WaveView>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
flexDirection: 'row'
}
});