rn-animated-loading-button

A animated loading button for react native.

Usage no npm install needed!

<script type="module">
  import rnAnimatedLoadingButton from 'https://cdn.skypack.dev/rn-animated-loading-button';
</script>

README

npm version npm Platform - Android and iOS License: MIT styled with prettier

React Native Animated Loading Button

Screenshots

Source code copied and edit from https://github.com/philip-bui/rn-animated-loading-button , because of personal reason (custom something that it cant be normally).

Installation

Add the dependency:

yarn add rn-animated-loading-button

Peer Dependencies

IMPORTANT! You need install them

"react": ">= 16.x.x",
"react-native": ">=0.63.x"

Usage

Import

import AnimatedLoadingButton from "rn-animated-loading-button";

Fundamental Usage

<AnimatedLoadingButton
  containerStyle={styles.submitButtonContainer}
  buttonStyle={styles.submitButton}
  title="Submit"
  titleStyle={styles.submitText}
  ref={(r) => (buttonRef = r)}
  onPress={onPress}
/>

const styles = StyleSheet.create({
  submitButtonContainer: {
    height: 40,
    width: 150,
  },
  submitButton: {
    backgroundColor: '#0D6CEC',
    borderRadius: 50,
  },
  submitText: {
    fontSize: 18,
    color: '#FFFFFF',
  },
});

Example Project 😍

You can checkout the example project 🥰

Simply run

  • npm i
  • npx react-native run-ios/android

should work of the example project.

Configuration - Props

Fundamentals

Property Type Default Description
title string undefined change the title

Customization (Optionals)

Property Type Default Description
disabled boolean false let you enable the button (must use it for button)
onPress function undefined set your own logic for the button functionality when it is pressed
containerStyle ViewStyle default set or override the style object for the main container
titleStyle ViewStyle default set or override the style object for the button title
buttonStyle ViewStyle default set or override the style object for the button style
loadingStyle ViewStyle default set or override the style object for the loading style
TouchableComponent Image default set your own component instead of default react-native Image component
useNativeDriver boolean false set your own component instead of default react-native Image component
TouchableComponent Image default set your own component instead of default react-native Image component
TouchableComponent Image default set your own component instead of default react-native Image component
TouchableComponent Image default set your own component instead of default react-native Image component
TouchableComponent Image default set your own component instead of default react-native Image component

Future Plans

  • LICENSE
  • Write an article about the lib on Medium

Change Log

Change log will be here !

Author

jeremaihloo, jeremaihloo1024@gmail.com

License

React Native Typescript Library Starter is available under the MIT license. See the LICENSE file for more info.