Big news!Introducing Socket AI - ChatGPT-Powered Threat Analysis. Learn more
Socket
Log inDemoInstall

react-native-globalize

Package Overview
Dependencies
6
Maintainers
1
Versions
53
Issues
File Explorer

Advanced tools

react-native-globalize

Internationalization (i18n) for React Native

    4.5.1latest
    GitHub

Version published
Maintainers
1
Weekly downloads
748
decreased by-27.1%

Weekly downloads

Changelog

Source

4.5.1

4.5.1 (2021-01-03)

Bug Fixes

  • move react & react-native types to dev deps (#61) (d4645a0)

Readme

Source

React Native Globalize

Version Downloads Build Status Coverage License

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

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.

Keywords

FAQs

Last updated on 03 Jan 2021

Did you know?

Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.

Install Socket
Socket
support@socket.devSocket SOC 2 Logo

Product

  • Package Issues
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc