美文网首页
2019-06-21

2019-06-21

作者: 小宝_ab67 | 来源:发表于2019-06-21 14:09 被阅读0次
* 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```

相关文章

  • 卖萌的ScalersTalk第四轮新概念朗读持续力训练Day22

    练习材料: [Day 1730 2019-06-21] Lesson 11-1 How to grow old S...

  • 2019-06-22

    2019-06-21日。 01:26 2019年6月21日 日精进。 体验。吸收 释放。 ...

  • 2019-6-21晨间日记

    2019-06-21 【践行人员】袁顺娟 【践行天数】233/1000 【今日天气】晴 【昨日早睡】22:30 【...

  • 三行诗《夜》

    还剩一只蚊子 说着我听不懂的话 留下告别的拥抱 ——《夜》雨叚 2019-06-21

  • 清晨的往事回味

    2019-06-21 5:35 周五 晴天 有点冷 锡林浩特 未来 清晨,活力,往事,未来,时光。 今天是...

  • 2019-06-21日志

    日期:2019-06-21周五 天气:23-35° 晴,夏至 坐标: 山东·济南 晨起打卡、日更、每日一善、冥想 ...

  • 从现在开始,努力成为别人的梦

    从现在开始,努力成为别人的梦 时间:2019-06-21 11:08:23 短文学:曾祥国残红 这个城市流动着尘土...

  • 2019-06-21跑步记录

    时间:2019-06-21 21:00 线路:天马河绿道 成绩:5公里用时34分27秒 6月:121.23公里 感...

  • 2019-06-23

    2019-06-21 姓名:郭祥华 组别:315期六项精进努力一组 【日精进打卡第541】 【知~学习】 背诵《...

  • 复盘Day127 绘画分析

    2019-06-21 05:05 早起√ 图片发自简书App 每天三目标 1.复盘√ 2.绘画分析√ 3.运动× ...

网友评论

      本文标题:2019-06-21

      本文链接:https://www.haomeiwen.com/subject/cgyyqctx.html