Coder Social home page Coder Social logo

joeyschroeder / react-native-animated-background-color-view Goto Github PK

View Code? Open in Web Editor NEW
24.0 1.0 8.0 3.63 MB

๐ŸŒˆ A modified React-Native "View" component that animates it's "backgroundColor" when "color" prop changes.

Home Page: https://www.npmjs.com/package/react-native-animated-background-color-view

License: Other

JavaScript 100.00%
react react-native animated animation animates background color view

react-native-animated-background-color-view's Introduction

npm npm downloads license GitHub issues GitHub stars code style: prettier tested with jest Dependency status devDependency status

React Native Animated Background Color View

A modified React Native View component that animates it's backgroundColor when color prop changes. Works on iOS & Android.

Example

react-native-animated-background-color-view

Installation

npm install react-native-animated-background-color-view --save

Usage

Import AnimatedBackgroundColorView component

import { AnimatedBackgroundColorView } from 'react-native-animated-background-color-view';

Use as follows:

<AnimatedBackgroundColorView color='#00aced' />

Each time the color prop value changes the backgroundColor will use the React Native timing animation to animate from the previous value to the current value.

Animate On Component Mount

You can also specifiy an initial color for the background color to animate from when the component mounts:

<AnimatedBackgroundColorView
  color='#00aced'
  initialColor='red'
/>

On mount the component backgroundColor will be blue and then animate to #00aced.

Using the children Prop

The AnimatedBackgroundColorView component works just like the standard React Native View component. AnimatedBackgroundColorView is designed to be nested inside other View components or other AnimatedBackgroundColorView components and can have 0 to many children of any type.

class AnimatedBackgroundColorViewWithText extends Component {
  render() {
    return (
      <AnimatedBackgroundColorView
        color='#00aced'
        initialColor='red'
        style={{ flex: 1 }}
      >
        <Text>Hello, world!</Text>
      </AnimatedBackgroundColorView>
    );
  }
}

Configuration

You can configure AnimatedBackgroundColorView by passing the following props:

prop type/valid values default description
color string '#00aced' the color value to which the component backgroundColor will animate
delay number 0 the length in milliseconds the component will wait before animating to the next color
duration number 2400 the length in milliseconds the timing animation will last
easing React Native Easing function Easing.out(Easing.exp) the easing function to define animation curve
initialColor string undefined the color value from which the component backgroundColor will animate on mount
style React Native style object undefined additional styles applied to the component

Built With

  • React Native - A framework for building native apps using React

Versioning

I use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

See also the list of contributors who participated in this project.

Contributing

Please submit a pull request with any features/fixes for the project. I apologize in advance for the slow action on pull requests and issues. Please follow the ESLint rules for the project.

License

This project is licensed under the MIT License - see the MIT Open Source Initiative for details.

Acknowledgments

Hat tip to anyone who's code was used! ๐Ÿค 

react-native-animated-background-color-view's People

Contributors

jaulz avatar joeyschroeder avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

react-native-animated-background-color-view's Issues

Only animates on initialColor

I'm using <AnimatedBackgroundColorView color={this.state.bgColor} initialColor='#000' duration={6000} delay={1000} > and it updates the background whenever I update state, however it's never animated. Have also tried updating the var within render() but same results. Any ideas?

useNativeDriver warning

Hi , im using :
"react": "16.11.0",
"react-native": "0.62.2",
"react-native-animated-background-color-view": "^1.3.0",
and whenever i call AnimatedBackgroundColorView , i see this warning :
Screenshot_1592812514 .

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.