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

@sonr-io/react-native-ui-components

v0.0.8

Published

Behavioral UI components for Sonr Account management and authentication.

Downloads

3

Readme

React Native UI Components

Behavioral UI components for Sonr Account management and authentication.

Installation

npm install @sonr-io/react-native-ui-components

Basic usage

import { AuthComponent } from "@sonr-io/react-native-ui-components"
<AuthComponent onSuccess={alert} />

Storybook

The components can also be tested with Storybook + Expo.

yarn storybook

Storybook controls can also be run for a browser.

yarn storybook-controls

Publishing

Publishing to NPM happens automatically on every GitHub release.

Next steps

  • Handle remaining authentication concepts such as pre-shared keys, keyprints, nearby devices etc
  • Implement account recovery
  • Implement account management component

Folder Structure

  • src/sandbox: Include a layer of abstraction to work locally with the components without calling real methods from motorkit scope.
  • src/components: Where basic components were made, you will find code for buttons, text Input and containers.
  • src/icons: icons used within components
  • src: Source for complex screen mixing those primary components and UX
    • AuthenticationComponent: The main component to control screen navigation. It is not using StackNavigator because it will be displayed on top of another on the beam-react-native code. This component will be the entry point for this project.
    • AuthenticationContext: Provide react context features to support communication between screens and components.
  • /storybook: contain stories folder to display component features. The /App folder should display the entire app behavior inside the storybook.