react-native-auto-scale-text
Version:
React Native library that supports auto scale font based on container for Android and iOS
39 lines (25 loc) • 2.9 kB
Markdown
# 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

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

### Props
| Name | Description | Details |
| ----------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------ |
| `maxLines` | (Optional) Maximum number of lines before rescaling | **required**<br>array: [] |
| `maxFontSize` | (Optional) Maximum font size | number: 0 |
| `style` | (Optional) Text style | function: () => {} |
| |