react-native-bubble-tabbar icon indicating copy to clipboard operation
react-native-bubble-tabbar copied to clipboard

[Feature request] add ui kitten eva-icons support

Open kockok opened this issue 5 years ago • 1 comments

Hi, I'm using the ui-kitten icons.

const evaIconRenderer = ({icon}: IIconRenderer) => <Icon name={icon} />;

const CustomTabBar: React.FC<BottomTabBarProps> = ({
  state,
  descriptors,
  navigation,
}) => {
  return (
    <BubbleTabBar
      state={state}
      descriptors={descriptors}
      navigation={navigation}
      tabs={tabs}
      iconRenderer={evaIconRenderer}
    />
  );
};

Even with the iconRenderer, I cannot get the icons show up.

Possibly this is due to the fact that eva icon is rendering icons with JSX elements.

The active highlight becomes eerily big. Screenshot 2020-07-19 at 12 06 10 AM

kockok avatar Jul 18 '20 16:07 kockok

@kockok, Thanks for the issue & sorry for the late reply. Hadn't check my inbox,, 😰 I promise to investigate it tommorrow ! 🚀

junhoyeo avatar Jul 21 '20 16:07 junhoyeo