An open API service indexing awesome lists of open source software.

https://github.com/malaa-tech/react-native-simple-keypad

A simple, easy to use, and beautiful keypad component for react native ⌨️
https://github.com/malaa-tech/react-native-simple-keypad

Last synced: 7 months ago
JSON representation

A simple, easy to use, and beautiful keypad component for react native ⌨️

Awesome Lists containing this project

README

        

[![License](http://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/Malaa-tech/react-native-simple-keypad)

# react-native-simple-keypad

A simple, easy to use, and beautiful keypad component for react native

## 🖥️ Example App Demo
run it your self using `yarn example [ios/andriod]`

## 📦 Installation

```sh
npm install react-native-simple-keypad
```
or
```sh
yarn add react-native-simple-keypad
```

## How we use it in Malaa App

## ⚒️ Usage

```js
import * as React from 'react';
import { View } from 'react-native';
import Keypad from 'react-native-simple-keypad';

export default function App() {
return (

console.log(`${value} is pressed`)}
textStyle={{ fontWeight: '600', fontSize: 30 }}
backspaceIconFillColor="#000000"
backspaceIconStrokeColor="#FFFFFF"
bioMetricFillColor="#000000"
backspaceIconHeight={24}
backspaceIconWidth={33}
bioMetricIconHeight={28}
bioMetricIconWidth={28}
onBioAuthPress={() => console.log('Bio Auth')}
/>

);
}

```

## 🤝 Contributing

See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.

## License

MIT

---

Made with [create-react-native-library](https://github.com/callstack/react-native-builder-bob)