We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As below example, flatHeights and measure provide different measurement.
flatHeights
measure
import TextSize from 'react-native-text-size'; const demoText = await TextSize.flatHeights({ text: ['မြန်မာစာ'], }); const demoSingle = await TextSize.measure({ text: 'မြန်မာစာ', }); // output: demoText: [17] console.log(`demoText: ${JSON.stringify(demoText)}`); // output: demoSingle: {"width":52.5,"lineCount":1,"height":31} console.log(`demoSingle: ${JSON.stringify(demoSingle)}`);
The result should be 31 while flatHeights produce 17.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As below example,
flatHeights
andmeasure
provide different measurement.The result should be 31 while
flatHeights
produce 17.The text was updated successfully, but these errors were encountered: