Я хочу добавить подчеркивание и выравнивание по левому и правому краям по центру текста в RichEditor, но на панели инструментов есть только кнопки по умолчанию. Есть карта значков вызова опоры, но я не знаю, как ее использовать.
<View style={{
height: 250, width: '90%', borderRadius: 5, borderWidth: 0.6, borderColor: 'lightgrey',
alignItems: 'flex-start', flexDirection: 'column', justifyContent: 'center', backgroundColor: 'rgb(242,240,244)', marginLeft: 20
}}>
<View style={{ flex: 1, }}>
<RichEditor
ref={(r) => this.richtext = r}
initialContentHTML={this.bizDetailsEditorVal}
keyboardDisplayRequiresUserAction={true}
onMessage={(s) => {
console.log(s)
}}
style={{
// minHeight:Platform.OS === 'ios' ? 30 : 40,
// maxHeight:Platform.OS === 'ios' ? 100: 40,
height: '100%',
backgroundColor: 'white',
flex: 1, justifyContent: 'center',
minWidth: '100%', width: '100%'
}}
/>
</View>
<View style={{ width: '100%' }}>
<RichToolbar
getEditor={() => this.richtext} />
</View>