Kureev / react-native-navbar

Navbar component for React Native

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can't set Title style

doxiaodong opened this issue · comments

https://github.com/react-native-community/react-native-navbar/blob/master/index.js#L56

  • the bug code
<Text style={[styles.navBarTitleText, colorStyle]}>
    {data.title}
</Text>
  • should be
<Text style={[styles.navBarTitleText, data.style, colorStyle]}>
    {data.title}
</Text>