Style sheets are very useful in software development as they define both the style and the general look and feel of your software application. You’re Not a Senior Developer Until You Have These 8 Traits.
Sometimes these style sheets could internal or external. One advantage of using external stylesheet in React Native is that it avoids unnecessary re-styling: one block of style can serve multiple pages.
This is usually done in HTML and CSS, and now let’s see how we can replicate that behaviour in our React Native application.
This is the first step in creating our external style sheet in React Native. We must create the file where our styles will be defined. Sometimes these files could be inside a folder like assets or maybe styles, but that arrangement is subjective and not compulsory, Nevertheless, it makes your project look tidy.
Learn software development training in abuja
We will then proceed to add the styles in our created Style.js file as follows:
import { StyleSheet } from 'react-native';
const styles = StyleSheet.create({
box: {
width: '80%',
height: 150,
backgroundColor: 'red',
alignSelf: 'center',
borderRadius: 9
}
});
export { styles }
Notice here that we are importing ‘React’ or anything of such as it is not necessary.
Also notice that we are exporting style constant, which is what makes the style to be globally accessible by all screens in our application.
So we’ll add external style sheet to our screen
Let’s call our screen Home.js
import React, { Component } from "react";
import { View } from 'react-native';
import { styles } from "./Style";
class Home extends Component {
render(){
return(
<View>
<View style={styles.box}>
</View>
</View>
)
}
}
export default Home;
This is how we create and use external style sheet in React Native.
See also:
How to create onboarding screen in React Native
Latest tech news and coding tips.
We've all seen them. The developers who seem to effortlessly untangle complex problems, whose code…
If you're building a social, chat, or comment-based mobile app using React Native, protecting your…
The Cross-Platform ImperativeLet's face it: building separate iOS and Android apps wastes resources. React Native…
We live in an age of infinite distraction and overwhelming ambition. Grand goals shimmer on…
Reusable components are modular UI building blocks designed for versatility. Instead of writing duplicate code…
What is a Palindrome? A palindrome is any word, phrase, number, or sequence that reads…
View Comments
'Preciate it
Glad to help