* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow
*/
import React, {Component} from 'react';
import {
Platform,
StyleSheet,
Text,
View,
Switch,
AlertIOS,
ActivityIndicator,
} from 'react-native';
type Props = {};
var Dimensions = require('Dimensions');
var width = Dimensions.get('window').width;
export default class ActivityIndicator9 extends Component<Props> {
constructor(props)
{
super(props);
this.state =
{
animating:true,
switchstate:true
};
}
render() {
return (
<View style={styles.container}>
<ActivityIndicator
// 是否要显示指示器
animating={this.state.animating}
// 滚轮的前景颜色
color="yellow"
// 在没有动画的时候,是否要隐藏指示器
ioshidesWhenStopped={true}
// 指示器的大小
size="small"
style={[styles.centering, {height: 80,backgroundColor:"red"}]}
/>
<ActivityIndicator
animating={this.state.animating}
style={[styles.centering, {height: 80,backgroundColor:"blue"}]}
size="large"
/>
<Switch tintColor={'yellow'} onTintColor={'blue'} value={this.state.switchstate}onValueChange={(value)=>this.click(value)}/>
</View>
);
}
click(value){
console.log(value.toString());
if (value){
AlertIOS.alert(value.toString());
}
this.setState({
animating:!this.state.animating,
switchstate:!this.state.switchstate
})
}
}
const styles = StyleSheet.create({
container:{
backgroundColor:"#dddddd",
flex:1,
alignItems:'center',
justifyContent:"center",
flexDirection:"column",
},
centering:{
marginTop:10,
}
})
@end```
2019-06-21
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- Alveolar progenitor and stem cells in lung development, r...