npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-unlock

v1.0.0

Published

<p align="center"> <a href="http://standardjs.com/"><img alt="JavaScript Style Guide" src="https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square"></a> <a href="https://npmjs.org/package/react-native-unlock"><img alt="npm

Downloads

21

Readme

react-native-unlock

[WIP]

Feature

  • Smooth gesture base on ReactART
  • Simple & Advanced usage
  • Fully customized ability

Changelogs

Show Cases

WIP

Getting Started

Installation

$ npm i react-native -g
$ react-native init examples
$ cd examples
$ npm i react-native-unlock -S

Note: this component base on ART.xcodeproj, we should manual linking it with few steps:

  1. Open your project in Xcode

    $ open ios/examples.xcodeproj
  2. Drag ART.xcodeproj(in node_modules/react-native/Libraries/ART/) over to Libraries section in XCode

  3. Add libART.a under "Build Phases" -> "Link Binary With Libraries"

That's all, then restart the simulator.

Basic Usage

import React from 'react'
import { AppRegistry, View } from 'react-native'
import Unlock from 'react-native-unlock'
AppRegistry.registerComponent('examples', () => () => <View style={{flex: 1}}>
  <Unlock />
</View>)

Components

import Unlock, { Circle, Line, Text, Group } from 'react-native-unlock'

Expose Circle, Line, Text, Group for more custom ability.

Properties

| Prop | Default | Type | Description | | :------------ |:---------------:| :---------------:| :-----| | width | undefind | number | if unset autoLayout base on outer size. | | height | undefiend | number | if unset autoLayout base on outer size. | | gapSize | true | number | gap size between outer circle. | | stroke | true | string | gap size between outer circle. | | font | true | string | gap size between outer circle. | | style | true | object | wrapper style will overrer the default. | | autoResetTimeout | true | number | only auto reset if set. | | clear | true | bool | clear current state, usefully if you want reset through state. | | outer | true | element | Provide your cumstom outer component. | | outerProps | true | object | cumstom outer component. | | outerOverProps | true | object | cumstom outer component. | | outerErrorProps | true | object | cumstom outer component. | | outerSuccessProps | true | object | cumstom outer component. | | inner | true | element | Provide your cumstom inner component. | | innerProps | true | object | cumstom inner component. | | innerOverProps | true | object | cumstom inner component. | | innerErrorProps | true | object | cumstom inner component. | | innerSuccessProps | true | object | cumstom inner component. | | onRelease | true | func | onPanResponderRelease handle. | | onGrant | true | func | onPanResponderGrant handle. | | line | true | object | line style . | | lineSuccess | true | object | line style for success. | | lineError | true | object | line style for error. | | interactive | true | oneOf(['', 'READY', 'SUCCESS', 'ERROR']) | interactive state. | | showTail | true | bool | whether show tail line. | | showText | true | bool | whether show inner text. | | maxLength | true | number | the max length of password. | | mode | true | oneOf(['gesture', 'touch']) | show mode. |

Examples

  • Unlock mode

  • Setting mode

  • Touch mode (like iOS native)

Development

$ cd examples
$ npm i
$ npm run dev
$ react-native run-ios