如何在React Native中的TextInput上更改字体系列

时间:2019-11-26 02:58:23

标签: reactjs react-native text

全部

我们正在构建一个以本机反应的聊天应用程序。在文本输入中,我们希望像WhatsApp一样实现文本更改。如何使用react native

enter image description here

1 个答案:

答案 0 :(得分:0)

查看此软件包是否可以帮助您

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"
/>