我正在为我的 React Native 应用程序使用 React Native pell rich 编辑器。但无法设置字体大小。有人请帮我设置文本的字体大小
我可以提供多种字体样式,但不能提供Font-family,您可以参考下面我的代码。
<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);
}}
/>
您可以在工具栏中设置有限的操作吗?我正在尝试设置它们,但它仍然显示所有操作。