Skip to content

Instantly share code, notes, and snippets.

@kashishgrover
Created November 30, 2018 19:31
Show Gist options
  • Save kashishgrover/bd0a82ef2fbbe26b4016ccc95bff60b8 to your computer and use it in GitHub Desktop.
Save kashishgrover/bd0a82ef2fbbe26b4016ccc95bff60b8 to your computer and use it in GitHub Desktop.
React Native index.js with default props example
import { Text, TouchableOpacity } from 'react-native';
Text.defaultProps = {
...Text.defaultProps,
allowFontScaling: false,
};
// In other news, we do this as well because 0.6 is too weird
TouchableOpacity.defaultProps = {
...TouchableOpacity.defaultProps,
activeOpacity: 0.8,
};
.
.
.
@Mayur-007
Copy link

Thank you so much!! been looking for this since long..

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment