timepill-app/src/component/touchable.js
xuwenyang 2951ea054c 1. 提出用户头像组件
2. 提出单条日记组件,分为摘要模式和完整模式(未完成)
3. 首页列表初步成形
2019-05-08 21:27:37 +08:00

22 lines
No EOL
698 B
JavaScript

import React from "react";
import {Platform, TouchableNativeFeedback, TouchableOpacity, View} from "react-native";
let TouchableIOS = (props) => {
return <TouchableOpacity activeOpacity={0.7} {...props}/>
};
let TouchableAndroid = (props) => {
return (
<TouchableNativeFeedback background={TouchableNativeFeedback.SelectableBackground()} useForeground={true} {...props}>
<View>
{props.children}
</View>
</TouchableNativeFeedback>
)
};
const Touchable = Platform.OS === 'android' ? TouchableAndroid : TouchableIOS;
Touchable.propTypes = (Platform.OS === 'android' ? null : TouchableOpacity.propTypes);
export default Touchable