【发布时间】:2019-01-20 02:39:01
【问题描述】:
我正在寻找一种方法来更改查看议程时用于关闭日历视图的图标。我正在使用这个组件https://github.com/wix/react-native-calendars
现在它是一条小线,我想用三角箭头或类似的东西代替它。
【问题讨论】:
标签: react-native react-native-calendars
我正在寻找一种方法来更改查看议程时用于关闭日历视图的图标。我正在使用这个组件https://github.com/wix/react-native-calendars
现在它是一条小线,我想用三角箭头或类似的东西代替它。
【问题讨论】:
标签: react-native react-native-calendars
您可以使用docs 中提到的renderKnob 属性来呈现您自己的图标
renderKnob={() => {return (/*Render your Icon JSX here*/);}}
【讨论】: