Skip to content

Migration guide

  1. Follow installation steps from Getting started guide.

  2. Replace your configuration with new one.

  3. Import StyleSheet from react-native-unistyles:

    import { createStyleSheet, useStyles } from 'react-native-unistyles'
    import { StyleSheet } from 'react-native-unistyles'
  4. Replace createStyleSheet with StyleSheet.create:

    const stylesheet = createStyleSheet(theme => ({
    const stylesheet = StyleSheet.create(theme => ({
  5. Remove all occurences of useStyles hook:

    const { styles } = useStyles(stylesheet)
  6. Rename your stylesheet to styles:

    const stylesheet = StyleSheet.create(theme => ({
    const styles = StyleSheet.create(theme => ({