Pressable 的替代方案用于 Web 原生反应
Alternative for Pressable in react native for web
使用 React Native Pressable
组件时,它无法在网络上运行。我正在使用 expo
和 react-native-web
。我应该对 react-native-web 做些什么才能让它在网络上运行吗?
如果没有,是否有 Pressable
的 expo 或 react-native-web 替代方案?我知道 Button
可以工作,但据我所知,它在移动设备上的样式存在问题。 TouchableHighlight
和 TouchableOpacity
似乎也可以工作,但它们没有相同的 API,而且在 documentation 中似乎没有前瞻性。 Pressable
目前是否与网络不兼容?
目前,当我 运行 expo start
和 运行 网络上的应用程序时,Pressable
无法在网络上运行。
import React from 'react';
import { Text, View, StyleSheet, Pressable } from 'react-native';
export Button = (props) => {
const { onPress } = props;
return (
<Pressable style={styles.button} onPress={onPress}>
<Text style={styles.text}>Save</Text>
</Pressable>
);
}
网络上的可印刷作品。你遇到了什么错误?
使用 React Native Pressable
组件时,它无法在网络上运行。我正在使用 expo
和 react-native-web
。我应该对 react-native-web 做些什么才能让它在网络上运行吗?
如果没有,是否有 Pressable
的 expo 或 react-native-web 替代方案?我知道 Button
可以工作,但据我所知,它在移动设备上的样式存在问题。 TouchableHighlight
和 TouchableOpacity
似乎也可以工作,但它们没有相同的 API,而且在 documentation 中似乎没有前瞻性。 Pressable
目前是否与网络不兼容?
目前,当我 运行 expo start
和 运行 网络上的应用程序时,Pressable
无法在网络上运行。
import React from 'react';
import { Text, View, StyleSheet, Pressable } from 'react-native';
export Button = (props) => {
const { onPress } = props;
return (
<Pressable style={styles.button} onPress={onPress}>
<Text style={styles.text}>Save</Text>
</Pressable>
);
}
网络上的可印刷作品。你遇到了什么错误?