StyleSheet — React Native built-in. styled-components — CSS-in-JS library.
StyleSheet:
1import { StyleSheet } from "react-native";23const styles = StyleSheet.create({4 container: { flex: 1, backgroundColor: "#fff" },5 text: { fontSize: 16, color: "#000" },6});
styled-components:
1import styled from 'styled-components/native';23const Container = styled.View`4 flex: 1;5 background-color: ${props => props.theme.bg};6`;78const Title = styled.Text`9 font-size: 16px;10 color: ${props => props.color};11`;
When to use: