2.1.0 • Published 3 years ago

react-native-animated-weather-icons-fork v2.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

react-native-animated-weather-icons

Animated SVG Weather Icons for React Native

Requirements

Installation

yarn add react-native-animated-weather-icons-fork

or

npm i react-native-animated-weather-icons-fork

Usage

import AnimatedWeatherIcon from 'react-native-animated-weather-icons-fork';

Props

PropertyTypeDefaultDescription
weatherNamestring'weather-sunny'Specifies icon to show

Example

const App: () => Node = () => {
  return (
    <View>
      <AnimatedWeatherIcon 
        weatherName="weather-sunny"
      />
    </View>
  )
}

Credit

Forked from react-native-animated-weather-icons by stan-sack

Forked from https://github.com/CurtisTD/react-native-animated-weather-icons by CurtisTD

Changes since forking:

  • Created a single component to use rather than having to import each different component in. Now the name can be passed into said singular component.
  • Fixed an issue with snow icon not working due to path errors.
  • Some other react-native issues that were causing errors.

Possible future changes:

  • Specifying styles and colors
  • Allowing options for animation looping, pausing, etc.