-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMyWatermarkView.js
49 lines (42 loc) · 996 Bytes
/
MyWatermarkView.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
* @Author: yinyongqian
* @Description:
* @LastEditors: yinyongqian
* @Date: 2019-03-20 11:13:04
* @LastEditTime: 2019-03-20 12:08:59
*/
import React, { Component } from 'react';
import { StyleSheet } from 'react-native';
import { WatermarkView } from './src/index';
class MyWatermarkView extends React.Component {
render() {
const {
watermark = '朋友 · 爱',
style = styles.container,
itemWidth = 100,
itemHeight = 100,
rotateZ = -45,
watermarkTextStyle = styles.watermarkTextStyle
} = this.props;
return (
<WatermarkView
foreground
watermark={watermark}
style={style}
itemWidth={itemWidth}
itemHeight={itemHeight}
rotateZ={rotateZ}
watermarkTextStyle={ watermarkTextStyle }
>
{this.props.children}
</WatermarkView>
)
}
}
const styles = StyleSheet.create({
container: {
},
watermarkTextStyle: {
}
})
export default MyWatermarkView