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-material-loading-button

v0.1.1

Published

A simple material style button with 'Raised' (default) and 'Flat' styles, which supports a 'Loading' state which makes the user wait for the action to complete without affecting the user experience.

Downloads

12

Readme

react-native-material-loading-button

Flat-Normal Flat-Loading Raised-Normal Raised-Loading

A simple material style button with "Raised" (default) and "Flat" styles, which supports a "Loading" state which makes the user wait for the action to complete without affecting the user experience.

Installation

npm install -S react-native-material-loading-button

Adding Roboto-Medium Font

This component requires Roboto-Medium font to be added in the main project. You can download the font from Google Fonts.

If you need help adding custom font to a React Native project, refer this article.

Usage

import React, { Component } from 'react';
import MaterialButton from 'react-native-material-loading-button';

...

class Demo extends Component {
  
  ...

  render() {
    return (
      <MaterialButton
        text="Upload"
        loadingText="Uploading"
        isLoading={this.state.loading} 
        onPress={() => this.onBtnPress()} />
    );
  }
}

...

Props

| Name | Description | Type | Default | | ---- |------------ | :---:| ------- | | text | Button text | string | Button | | flat | true if you want a flat button. Renders a raised button otherwise | boolean | false | | color | Primary color of the button. This will be background color for raised button (default). For flat buttons, this will set the text color. | string | #039be5 | | onPress | Event handler for button onPress | function | - | | isLoading | true if the button should be rendered in a "loading" state (like in the animation at the top). | boolean | false | | loadingText | This is be the button text next to the loading spinner if specified. Otherwise, value of "text" will be shown next to the loading spinner. | string | - | | disabled | Button will not be clickable and visually goes to "disabled" state if set to true | boolean | false | | style | Add a custom style to outer container of the button | object | - | | textStyle | Add a custom style to the button text | object | - |

License

© 2018 Vahissan Nandakumar, MIT license.