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
|
import React from 'react';
import { LinearGradient } from 'expo';
import {
RkButton,
RkText,
RkComponent,
} from 'react-native-ui-kitten';
export class GradientButton extends RkComponent {
componentName = 'GradientButton';
typeMapping = {
button: {},
gradient: {},
text: {},
};
renderContent = (textStyle) => {
const hasText = this.props.text === undefined;
return hasText ? this.props.children : this.renderText(textStyle);
};
renderText = (textStyle) => (
<RkText style={textStyle}>{this.props.text}</RkText>
);
render() {
const { button, gradient, text: textStyle } = this.defineStyles();
const { style, rkType, ...restProps } = this.props;
const colors = this.props.colors || this.extractNonStyleValue(gradient, 'colors');
return (
<RkButton
rkType='stretch'
style={[button, style]}
{...restProps}>
<LinearGradient
colors={colors}
start={{ x: 0.0, y: 0.5 }}
end={{ x: 1, y: 0.5 }}
style={[gradient]}>
{this.renderContent(textStyle)}
</LinearGradient>
</RkButton>
);
}
}
|