React Native External Stylesheet

前端 未结 9 1080
你的背包
你的背包 2021-02-03 23:12

Is there a way in React Native that I can put all of my styles in a single file so it can easily be maintained (from my perspective) like in HTML we have a .css fil

9条回答
  •  我寻月下人不归
    2021-02-03 23:31

    You could simply create a Styles component like so with all your styles...

    import { StyleSheet } from "react-native"
    
    export default StyleSheet.create({
       ...
    })
    

    Then on any view needing styles, simply require it...

    import styles from "./Styles"
    

提交回复
热议问题