Kureev / react-native-navbar

Navbar component for React Native

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Have multiple buttons

vaderdan opened this issue · comments

Hi
Is it possible to add multiple buttons on the right side
like
<NavigationBar title={{title: 'hello'}} rightButton={[{title: 'next'}, {title: 'next'}]}

Hi,

Not like this, but you can supply a custom component to the rightButton that contains buttons you want:

function RightButton(props) {
  return (
    <View>
      <Button1 />
      <Button2 />
    </View>
  );
}

thanks!