【发布时间】:2019-11-26 02:58:23
【问题描述】:
【问题讨论】:
标签: reactjs react-native text
【问题讨论】:
标签: reactjs react-native text
看看这个包是否能帮到你
https://github.com/Astrocoders/react-native-selectable-text
<SelectableText
menuItems={["Bold", "Copy", "Italic"]}
/*
Called when the user taps in a item of the selection menu:
- eventType: (string) is the label
- content: (string) the selected text portion
- selectionStart: (int) is the start position of the selected text
- selectionEnd: (int) is the end position of the selected text
*/
onSelection={({ eventType, content, selectionStart, selectionEnd }) => {}}
value="I crave star damage"
/>
【讨论】: