如何在react native pell富编辑器++++中设置字体大小



我正在为我的react原生应用程序使用react原生pell富编辑器。但无法设置字体大小。任何人都请帮我设置文本的字体大小

我可以提供多种字体样式,但不能提供字体系列,您可以参考下面的代码。

<RichEditor
ref={richText}
initialFocus={false}
initialHeight={40}
editorStyle={{
color: ColorConstant.MAIN_DARK,
contentCSSText: 'font-size: 42px;',

}}
onBlur={handleBlur}
placeholder="add description*"
//editorInitializedCallback={() => this.onEditorInitialized()}
// onChange={descriptionText => {
//   console.log('descriptionText:', descriptionText);
// }}
onChange={text => {
setEventDescription(text);
}}
/>

最新更新