react-native-globalize

Internationalization (i18n) for React Native

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
react-native-globalize
4.5.13 years ago8 years agoMinified + gzip package size for react-native-globalize in KB

Readme

React Native Globalize
!Versionversion-imagepackage-url !Downloadsdownloads-imagepackage-url !Build Statusbuild-imagebuild-url !Coveragecoverage-imagecoverage-url !Licenselicense-imagelicense-url
React Native Globalize provides an easy-to-use and powerful solution for internationalization (i18n) in React Native apps.

Example

Using the useGlobalize() hook:
import { useGlobalize } from 'react-native-globalize';

export const HookExample = () => {
  const { formatCurrency } = useGlobalize();

  return (
    <Text>
      {formatCurrency(1000, 'USD', {
        maximumFractionDigits: 0,
        useGrouping: true,
      })}
    </Text>
  );
};

Using a Formatted component:
import { FormattedCurrency } from 'react-native-globalize';

export const ComponentExample = () => (
  <FormattedCurrency currencyCode="USD" maximumFractionDigits={0} useGrouping value={1000} />
);

Docs

- useGlobalize - formatCurrency - formatDate - formatMessage - formatNumber - formatPlural - formatRelativeTime - formatUnit - parseDate - parseNumber - Utilities
- [`getAvailableLocales`](docs/api/utilities.md#getavailablelocales)
- [`getCurrencySymbol`](docs/api/utilities.md#getcurrencysymbol)
- [`loadCldr`](docs/api/utilities.md#loadcldr)
- [`loadMessages`](docs/api/utilities.md#loadmessages)
- [`localeIsLoaded`](docs/api/utilities.md#localeisloaded)
  • Components
- GlobalizeProvider - FormattedCurrency - FormattedDate - FormattedMessage - FormattedNumber - FormattedPlural - FormattedRelativeTime - FormattedUnit - withGlobalize

Supported By

Disruptive Labs

License

Copyright (c) 2015-2020 Josh Swan

Licensed under the The MIT License (MIT) (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   https://raw.githubusercontent.com/joshswan/react-native-globalize/master/LICENSE

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

See the License for the specific language governing permissions and
limitations under the License.