-
Notifications
You must be signed in to change notification settings - Fork 301
/
Copy pathindex.ios.js
executable file
·49 lines (39 loc) · 910 Bytes
/
index.ios.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
49
var React = require('react-native');
var {
PropTypes,
requireNativeComponent,
View,
Platform
} = React;
var Spinner = require('./spinner');
var RNSpinkit = null;
class Spinkit extends React.Component {
static propTypes = {
type: PropTypes.string,
color: PropTypes.string,
size: PropTypes.number,
isVisible: PropTypes.bool
};
static defaultProps = {
size: 37,
color: "#000000",
isVisible: true
};
render() {
var size = {height: this.props.size, width: this.props.size};
var Spin = (Platform.OS == "ios") ? RNSpinkit : Spinner;
if (!this.props.isVisible) return <View/>;
return (
<Spin
type={this.props.type}
size={this.props.size}
color={this.props.color}
style={[size, this.props.style]}/>
);
}
}
// Native component - Only for IOS
if (Platform.OS == "ios") {
RNSpinkit = requireNativeComponent('RNSpinkit', Spinkit);
}
module.exports = Spinkit;