How to use the react-native-paper.Colors.grey500 function in react-native-paper

To help you get started, we’ve selected a few react-native-paper examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github HenryQuan / WoWs-Info-Re / WoWsInfoMac / src / component / common / FooterButton.js View on Github external
render() {
    const { icon, left } = this.props;

    return (
       this.pressEvent()}/>
    )
  }
github HenryQuan / WoWs-Info-Re / WoWsInfo / src / page / home / Menu.js View on Github external
          right={() => isAndroid ? null : } />
        }} spacing={0}/>
github callstack / react-native-paper / example / src / GridViewExample.js View on Github external
const styles = StyleSheet.create({
  tile: {
    padding: 16,
    height: CARD_SIZE,
  },

  inner: {
    flex: 1,
    alignItems: 'center',
    justifyContent: 'center',
  },

  text: {
    fontSize: 16,
    color: Colors.grey500,
    fontWeight: 'bold',
    textAlign: 'center',
  },
});
github HenryQuan / WoWs-Info-Re / WoWsInfo / src / page / home / Friend.js View on Github external
              right={() =>  this.removeClan(item)}/> }/>}
          keyboardShouldPersistTaps='always'/>