All Projects → tienphaw → React Native Animated Spinkit

tienphaw / React Native Animated Spinkit

Licence: mit
A collection of loading indicators for React Native

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to React Native Animated Spinkit

Alive Progress
A new kind of Progress Bar, with real-time throughput, ETA, and very cool animations!
Stars: ✭ 2,940 (+1480.65%)
Mutual labels:  animations, spinners
spinners-angular
Lightweight SVG/CSS spinners for Angular
Stars: ✭ 21 (-88.71%)
Mutual labels:  loading, spinners
React Spinners Css
Amazing collection of React spinners components with pure css
Stars: ✭ 232 (+24.73%)
Mutual labels:  animations, spinners
react-bones
💀 Dead simple content loading components for React and React-Native. 💀
Stars: ✭ 42 (-77.42%)
Mutual labels:  loading, animations
vue-spinners-css
Amazing collection of Vue spinners components with pure css.
Stars: ✭ 50 (-73.12%)
Mutual labels:  animations, spinners
Spinners React
Lightweight SVG/CSS spinners for React
Stars: ✭ 254 (+36.56%)
Mutual labels:  loading, spinners
ZXLoadingView
🍕ZXLoadingView is an iOS progress-activity
Stars: ✭ 14 (-92.47%)
Mutual labels:  loading, spinners
React Awesome Spinners
Awesome spinners for React 👋 ⚛ Built with styled-components 💅
Stars: ✭ 237 (+27.42%)
Mutual labels:  loading, spinners
Xamarin.Android.AVLoadingIndicatorView
🔰 AVLoadingIndicatorView is a collection of nice loading animations for Xamarin.Android.
Stars: ✭ 26 (-86.02%)
Mutual labels:  loading, animations
spinnies
Node.js module to create and manage multiple spinners in command-line interface programs
Stars: ✭ 111 (-40.32%)
Mutual labels:  loading, spinners
SSSwiftUISpinnerButton
SSSwiftUISpinnerButton is a collection of various spinning animations for buttons in SwiftUI.
Stars: ✭ 37 (-80.11%)
Mutual labels:  loading, animations
Whirl
CSS loading animations with minimal effort!
Stars: ✭ 774 (+316.13%)
Mutual labels:  loading, spinners
Ssspinnerbutton
Forget about typical stereotypic loading, It's time to change. SSSpinnerButton is an elegant button with a diffrent spinner animations.
Stars: ✭ 357 (+91.94%)
Mutual labels:  animations, loading
Loaderbutton
LoaderButton is a very interesting animation loading button.
Stars: ✭ 19 (-89.78%)
Mutual labels:  animations, loading
Aim Ik
A Unity-3D library, to procedural orientate character head (and chest) in a direction without using any animation data.
Stars: ✭ 164 (-11.83%)
Mutual labels:  animations
Unity Aseprite Importer
An aseprite-file importer for unity written in C#, built upon the experimental AssetImporter API
Stars: ✭ 177 (-4.84%)
Mutual labels:  animations
Hyperion Ios
In-app design review tool to inspect measurements, attributes, and animations.
Stars: ✭ 1,964 (+955.91%)
Mutual labels:  animations
React Spinners Kit
A collection of loading spinners with React.js
Stars: ✭ 158 (-15.05%)
Mutual labels:  spinners
Discovery
Discoveries on Sustainable Loading research
Stars: ✭ 174 (-6.45%)
Mutual labels:  loading
Vue Ui For Pc
基于Vue2.x的一套PC端UI组件,包括了Carousel 跑马灯、Cascader 级联、Checkbox 多选框、Collapse 折叠面板、DatePicker 日期选择、Dialog 对话框、Form 表单、Input 输入框、InputNumber 数字输入框、Layer 弹窗层、Loading 加载、Menu 菜单、Page 分页、Progress 进度条、Radio 单选框、SelectDropDown 仿select、Switch 开关、Table 表格、Tabs 标签页、Textarea 文本框、Tooltip 文字提示、BackTop 返回顶部、steps 步骤条、Transfer 穿梭框、Tree 树形、Upload 文件上传、Lazy 图片懒加载、Loading 加载、Pagination 分页等等
Stars: ✭ 156 (-16.13%)
Mutual labels:  loading

React Native Animated SpinKit

Stable Release license

A pure JavaScript port of SpinKit for React Native.

Why Another Port?

The previous port of SpinKit for React Native (react-native-spinkit) is a native module so it requires extra native dependencies and can't be used in Expo projects without ejecting.

This library is a pure JavaScript port of SpinKit implemented with the Animated API, which means you can use it in any React Native project and the spinners will look identical on Android and iOS.

Installation

yarn add react-native-animated-spinkit

or

npm install react-native-animated-spinkit

Usage

import { Plane } from 'react-native-animated-spinkit'

function App() {
  return (
    <View style={styles.container}>
      <Plane size={48} color="#FFF" />
    </View>
  )
}

Props

Inherits View Props

size

number | defaults to 48

Width and height of the spinner.

color

string | defaults to #000

Color of the spinner.

animating

boolean | defaults to true

Whether to show the indicator or hide it.

hidesWhenStopped

boolean | defaults to true

Whether the indicator should hide when not animating.

Spinners

All the spinners from SpinKit have been ported.

  • <Plane />
  • <Chase />
  • <Bounce />
  • <Wave />
  • <Pulse />
  • <Flow />
  • <Swing />
  • <Circle />
  • <CircleFade />
  • <Grid />
  • <Fold />
  • <Wander />

Example

To run the example project, follow these steps:

  • Clone the repo
  • Run these commands
yarn
cd example
yarn && yarn start
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].