【原创】东方耀reactnative 视频18之-Touchable组件

来源:互联网 发布:欧洲30年战争知乎 编辑:程序博客网 时间:2024/06/10 10:14

rn有三个组件有被点击能力(去包裹其他组件)
1 TouchableHighlight 高亮
onHideUnderlay, onShowUnderlay,underlayColor(点击时背景阴影效果的背景色)
2 TouchableOpacity 设置透明度
activeOpacity

3 TouchableWithoutFeedback//不建议用

/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/

import React, { Component } from ‘react’;
import {
AppRegistry,
StyleSheet,
TouchableHighlight,
TouchableOpacity,
TouchableWithoutFeedback,

PixelRatio,
Text,
TextInput,
View
} from ‘react-native’;

var onePT = 1/PixelRatio.get();

class demo2 extends Component {

render() {
return (

0 0
原创粉丝点击