react-native-auto-scale-text

React Native library that supports auto scale font based on container for Android and iOS

Usage no npm install needed!

<script type="module">
  import reactNativeAutoScaleText from 'https://cdn.skypack.dev/react-native-auto-scale-text';
</script>

README

react-native-auto-scale-text

A cross-platform (iOS / Android) auto scale text component for React Native.

Getting Started

Installing

npm i react-native-auto-scale-text

Or

yarn add react-native-auto-scale-text

Basic Usage

example

<AutoScaleText
        style={{width: 100}}
        maxLines={3} 
        maxFontSize={14}>
        This is example text
    </AutoScaleText>

example

Props

Name Description Details
maxLines (Optional) Maximum number of lines before rescaling required
array: []
maxFontSize (Optional) Maximum font size number: 0
style (Optional) Text style function: () => {}