https://github.com/Damoness
npm install @newbanker/react-native-measure-text
import MeasureText from 'react-native-measure-text';
const texts = [
'This is an example',
'This is the second line'
];
const width = 100;
const fontSize = 15;
const fontFamily = 'Arvo';
class Test extends Component {
state = {
heights: [],
}
async componentDidMount() {
const heights = await MeasureText.heights({(
texts, /* texts to measure */
width, /* container width */
fontSize,
fontFamily /* fontFamily is optional! */
);
this.setState({ heights });
}
render() {
const { heights } = this.state;
return (
<View>
{texts.map((text, i) => (
<Text
key={`text-${i}`}
style={{
width,
fontSize,
fontFamily,
height: heights[i],
}}
>
{text}
</Text>
))}
</View>
}
}
MeasureText.heights(options)
Returns a promise that resolves to all the heights of the texts passed in options.
MeasureText.widths(options)
Returns a promise that resolves to all the widths of the texts passed in options.
Measure options:
texts
: An array of texts to measure.width
: Container width when you want to measure the height.height
: Container height when you want to measure the width.fontSize
: The size of the font.fontFamily
: The name of a custom font or a preinstalled font. This is optional.fontWeight
: Specifies font weight. The values are the same that React Native allows:enum('normal', 'bold', '100', '200', '300', '400', '500', '600', '700', '800', '900')
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT