Hi Devs’,
Welcome to infinitbility,
This article explain to make italic text in react native using fontStyle props.
Let’s start today topic fontStyle in react native Or how do make italic text in react native
React Native provide fontStyle props to make text in italic let’s understand with example.
React Native italic font example
italicFontStyle.js
1import React from 'react';2import { StyleSheet, Text, View } from 'react-native';34const LotsOfStyles = () => {5 return (6 <View style={styles.textContainer}>7 <Text style={[styles.text, {fontSize: 50, fontWaight: "900"}]}>Infinitbility</Text>8 <Text style={styles.text}>We have the ability to build infinite way for us.</Text>9 </View>10 );11};1213const styles = StyleSheet.create({14 textContainer: {15 flex: 1,1617 },18 text: {19 fontSize: 30,20 textAlign: 'center',21 fontStyle: 'italic',22 }23});2425export default LotsOfStyles;
you just write fontStyle: 'italic'
for make italic text.
Output

Thanks For Reading…