react-native-intl icon indicating copy to clipboard operation
react-native-intl copied to clipboard

React Native module ships native Intl implementation and Translation extension

Results 8 react-native-intl issues
Sort by recently updated
recently updated
newest added

I am using the intl package and this method does not work on Android, dev mode (no problems in debug weirdly)

is it possible to add localData as per requirements?

import IntlP from 'react-native-intl'; ``` export async function NumberFormatter() { const result = await (new IntlP.NumberFormat('en-US')).format(123456); alert(result); } ``` Seems there is some issue with library or dont know what,...

I had a problem compiling this library in android (using react-native 0.55.3). Changing this line solves the issue.

Minimum supported sdk is stated as 16 in the project's gradle settings, but some methods use API level 19-21 required calls, such as the _Locale.forLanguageTag_: ![screen shot 2018-03-01 at 15...

So I understand I can construct a translator object and use _ in my render() method without any problems. But I'm confused how I would go about using date/time formatting...

Hi, just wondering, how your lib differs from the `react-intl`, what benefit does it provide when using with RN in contrast to `react-intl`?