更改 React Native Calendars 的下拉图标
Change the pull down icon for React Native Calendars
我正在寻找一种方法来更改用于在查看议程时关闭日历视图的图标。我正在使用这个组件 https://github.com/wix/react-native-calendars
现在是一条小线,我想用三角箭头或类似的东西代替它。
您可以使用 docs 中提到的 renderKnob
道具来呈现您自己的图标
renderKnob={() => {return (/*Render your Icon JSX here*/);}}
我正在寻找一种方法来更改用于在查看议程时关闭日历视图的图标。我正在使用这个组件 https://github.com/wix/react-native-calendars
现在是一条小线,我想用三角箭头或类似的东西代替它。
您可以使用 docs 中提到的 renderKnob
道具来呈现您自己的图标
renderKnob={() => {return (/*Render your Icon JSX here*/);}}