xotahal / react-native-material-ui

Highly customizable material design components for React Native
MIT License
3.78k stars 611 forks source link

Text attribute of button ignores last character randomly #477

Closed achuthrajula closed 4 years ago

achuthrajula commented 4 years ago

<Button raised primary text="connect" style={{ text: { }, container: { marginBottom: 20, backgroundColor: "#FF5800" } }} onPress={() => this.scanAndConnect()} />

Expected a button with text "CONNECT" but got a button with text "CONNEC"

Also when I randomly checked for a few words, an empty space is being added before the second character in the string and the last character is ignored in the process.

Thanks

achuthrajula commented 4 years ago

It seems like a cache memory error, restarting the app fixed it