
Security News
Open Source Maintainers Demand Ability to Block Copilot-Generated Issues and PRs
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
react-native-text-input-mask
Advanced tools
Text input mask for React Native on iOS and Android.
npm install --save react-native-text-input-mask
# --- or ---
yarn add react-native-text-input-mask
pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text', :modular_headers => true
use_frameworks!
pod install
in the ios
directory.No need to do anything.
react-native link react-native-text-input-mask
iOS only: you have to drag and drop InputMask.framework
to Embedded Binaries
in General tab of Target
Libraries
➜ Add Files to [your project's name]
node_modules
➜ react-native-text-input-mask
and add RNTextInputMask.xcodeproj
libRNTextInputMask.a
to your project's Build Phases
➜ Link Binary With Libraries
Cmd+R
)android/app/src/main/java/[...]/MainActivity.java
import com.RNTextInputMask.RNTextInputMaskPackage;
to the imports at the top of the filenew RNTextInputMaskPackage()
to the list returned by the getPackages()
methodandroid/settings.gradle
:
include ':react-native-text-input-mask'
project(':react-native-text-input-mask').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-text-input-mask/android')
android/app/build.gradle
:
compile project(':react-native-text-input-mask')
import TextInputMask from 'react-native-text-input-mask';
...
<TextInputMask
onChangeText={(formatted, extracted) => {
console.log(formatted) // +1 (123) 456-78-90
console.log(extracted) // 1234567890
}}
mask={"+1 ([000]) [000] [00] [00]"}
/>
...
Make sure to mock the following to jest.setup.js
:
jest.mock('react-native-text-input-mask', () => ({
default: jest.fn(),
}))
RedMadRobot Input Mask Android
This project uses semantic versioning: MAJOR.MINOR.PATCH. This means that releases within the same MAJOR version are always backwards compatible. For more info see semver.org.
To use a local copy with your project, it's highly recommended to use https://github.com/wix/wml
FAQs
Text input mask for React Native.
The npm package react-native-text-input-mask receives a total of 13,889 weekly downloads. As such, react-native-text-input-mask popularity was classified as popular.
We found that react-native-text-input-mask demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
Research
Security News
Malicious Koishi plugin silently exfiltrates messages with hex strings to a hardcoded QQ account, exposing secrets in chatbots across platforms.
Research
Security News
Malicious PyPI checkers validate stolen emails against TikTok and Instagram APIs, enabling targeted account attacks and dark web credential sales.