
Security News
ESLint Adds Official Support for Linting HTML
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
react-native-global-props
Advanced tools
A simple javascript implementation to add custom, default props to react-native components.
A simple javascript implementation to add custom, default props to react-native components.
body {
background-color: 'teal'
}
p {
font-size: 12,
font-family: 'Helvetica Neue'
}
or get rid of that ugly line at the bottom of every TextInput
in Android?
npm i react-native-global-props --save
The example source code can be found under example/
.
Once you've installed react-native-global-props, go ahead choose which components you want to add custom props to.
In my example, I want to customize the View
, TextInput
, Text
, Image
, and TouchableOpacity
.
Go to your highest order component that contains your whole application. In my case that is example/Main.js
.
First I import the set
functions that will allow me to create my custom components.
import {
setCustomView,
setCustomTextInput,
setCustomText,
setCustomImage,
setCustomTouchableOpacity
} from 'react-native-global-props';
Then I create the custom props I want to add to each of these components.
// Setting a default background color for all View components.
const customViewProps = {
style: {
backgroundColor: '#d3d3d3' // light gray
}
};
// Getting rid of that ugly line on Android and adding some custom style to all TextInput components.
const customTextInputProps = {
underlineColorAndroid: 'rgba(0,0,0,0)',
style: {
borderWidth: 1,
borderColor: 'gray',
paddingVertical: 5,
paddingHorizontal: 10,
backgroundColor: 'white'
}
};
// Setting default styles for all Text components.
const customTextProps = {
style: {
fontSize: 16,
fontFamily: Platform.OS === 'ios' ? 'HelveticaNeue' : 'Roboto',
color: 'black'
}
};
// Makes every image resize mode cover by default.
const customImageProps = {
resizeMode: 'cover'
};
// Adds a bigger hit box for all TouchableOpacity's.
const customTouchableOpacityProps = {
hitSlop: { top: 15, right: 15, left: 15, bottom: 15 }
};
You can pass in any valid props as seen on react-native documentation. All of these props can easily be overridden.
Now plug your custom props into the set
functions like so
setCustomView(customViewProps);
setCustomTextInput(customTextInputProps);
setCustomText(customTextProps);
setCustomImage(customImageProps);
setCustomTouchableOpacity(customTouchableOpacityProps);
And Voila, your react-native components will have these certain props wherever you use them.
Here is an example of me using the components and overriding props. The below example source code can be found in example/src/App.js
import React from 'react';
import {
View,
TextInput,
Text,
Image,
TouchableOpacity
} from 'react-native';
const images = {
whosThatCoolCat: require('./img/MyNormPic.jpeg')
};
class App extends React.Component {
constructor(props) {
super(props);
this.state = {
inputValue: '',
hiddenText: true
}
}
render() {
return (
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
<Text style={{ marginBottom: 20 }}>react-native-global-props</Text>
<Image
source={images.whosThatCoolCat}
style={{ width: 80, height: 80, borderRadius: 40 }}
/>
<View style={{ marginVertical: 20 }}>
<TextInput
style={{ width: 200, height: 30 }}
placeholder="Enter text"
onChangeText={(text) => this.setState({ inputValue: text })}
value={this.state.inputValue}
/>
</View>
<TouchableOpacity onPress={() => this.setState({ hiddenText: !this.state.hiddenText })}>
<View style={{ backgroundColor: 'orange' }}>
<Text style={{ color: 'white' }}>Press me to show or hide the input text</Text>
</View>
</TouchableOpacity>
<Text style={{ color: 'red' }}>{this.state.inputValue}</Text>
</View>
);
}
}
export default App;
And this is the result
1.) Creating an amazing modular experience with your react-native components
2.) Adding customization to react-native components without having to create completely new ones
3.) Setting global styles like fontFamily and color
And much more!
Please contribute! All contributions are greatly appreciated no matter how small or large the contribution is. Whether it's a small grammar fix in the README, a huge bug fix, or just an issue report, you will be recognized as a 'Contributor' to this project.
Some great contributions would be to add customization for the components that currently aren't implemented. The following components have been implemented.
If you have any questions that can't be answered in the Issues forum under this repository, then feel free to email me at jacksonal300@gmail.com.
FAQs
A simple javascript implementation to add custom, default props to react-native components.
The npm package react-native-global-props receives a total of 3,842 weekly downloads. As such, react-native-global-props popularity was classified as popular.
We found that react-native-global-props demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.