我使用了Text组件引用: https://facebook.github.io/react-native/docs/text.html
使用属性selectable={true}
,是否有任何解决方案可以让Text
组件而非TextInput
组件的用户文本选择开始和结束?
因为我需要使用editable false来选择文本。
答案 0 :(得分:0)
您可以使用此https://github.com/Astrocoders/react-native-selectable-text/
import { SelectableText } from "react-native-selectable-text";
// Use normally, it is a drop-in replacement for react-native/Text
<SelectableText
menuItems={["Foo", "Bar"]}
onSelection={({ eventType, content, selectionStart, selectionEnd }) => {}}
value="I crave star damage"
/>;