Kureev/react-native-navbar

Can't set Title style

doxiaodong opened this issue · 0 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>