All Projects → katanyaJATI → react-native-image-blur-loading

katanyaJATI / react-native-image-blur-loading

Licence: other
React Native component for progressive image loading.

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to react-native-image-blur-loading

workbox-microsite
Workbox Microsite
Stars: ✭ 24 (+100%)
Mutual labels:  progressive
redux-global-loader
A Redux middleware for global loader
Stars: ✭ 13 (+8.33%)
Mutual labels:  loading
AyLoading
loading...
Stars: ✭ 25 (+108.33%)
Mutual labels:  loading
iakit
无依赖 mini 组件库,只封装了 alert, toast, loading, actionSheet 等使用频率较高的组件。适用于类似 H5 活动页的简单移动端项目,不必为了使用这些组件而引入一个大而全的 UI 库和框架。
Stars: ✭ 38 (+216.67%)
Mutual labels:  loading
easy-css-layout
Easy css layout
Stars: ✭ 117 (+875%)
Mutual labels:  loading
Laden
SwiftUI loading indicator view
Stars: ✭ 23 (+91.67%)
Mutual labels:  loading
css3-loading
20种常见的css3 Loading动画
Stars: ✭ 22 (+83.33%)
Mutual labels:  loading
vue-adaptive-utils
Deliver empathetic experiences to your users by adapting to their capabilities
Stars: ✭ 59 (+391.67%)
Mutual labels:  loading
busy-load
A flexible loading-mask jQuery-plugin
Stars: ✭ 76 (+533.33%)
Mutual labels:  loading
Panorama360
Projekt przejściowy do projektu Magisterskiego. Android, LibGDX, OpenCV, Camera, SurfaceView, stitching, panorama, sphere, gyroscope
Stars: ✭ 52 (+333.33%)
Mutual labels:  loading
Fluent-Design
Microsoft's Fluent Design with pure HTML/CSS/JS
Stars: ✭ 36 (+200%)
Mutual labels:  loading
Xamarin.Android.AVLoadingIndicatorView
🔰 AVLoadingIndicatorView is a collection of nice loading animations for Xamarin.Android.
Stars: ✭ 26 (+116.67%)
Mutual labels:  loading
yuanful-ui
(微信小程序插件) yuanful-ui是一套可添加到微信小程序内直接使用的免费功能插件,无需重复开发,为用户提供更丰富的服务。
Stars: ✭ 30 (+150%)
Mutual labels:  loading
awesome-web-styling
Awesome Web Styling with CSS Animation Effects ⭐️
Stars: ✭ 109 (+808.33%)
Mutual labels:  loading
StateLayout
一种无侵入,使用简单,无需修改现有布局,动态切换布局状态(Loading/Error/Empty/Content)的解决方案。
Stars: ✭ 151 (+1158.33%)
Mutual labels:  loading
KJNetworkPlugin
🎡A lightweight but powerful Network library. Network Plugin, Support batch and chain operation. 插件版网络架构
Stars: ✭ 43 (+258.33%)
Mutual labels:  loading
SikhJS
👳 🚀 Gurbani Progressive Web Application
Stars: ✭ 27 (+125%)
Mutual labels:  progressive
progress-image-view-android
Simple progress with ImageView android
Stars: ✭ 64 (+433.33%)
Mutual labels:  loading
android-blog-samples
source code for my blog~
Stars: ✭ 32 (+166.67%)
Mutual labels:  loading
core
augejs is a progressive Node.js framework for building applications. https://github.com/augejs/augejs.github.io
Stars: ✭ 18 (+50%)
Mutual labels:  progressive

React Native Image Blur Loading

React Native component for progressive image loading.

Installation

Run in your root project directory

$ npm install react-native-image-blur-loading --save

Usage

import React, { Component } from 'react';
import { View } from 'react-native';
import ImageBlurLoading from 'react-native-image-blur-loading'

// ...
const MyComponent = () => {
  return (
    <View style={{ flex: 1 }}>
      <ImageBlurLoading
        thumbnailSource={{ uri: 'https://picsum.photos/id/1/50/50' }}
        source={{ uri: 'https://picsum.photos/id/1/1000/1000' }}
        style={{ flex: 1, width: undefined, height: undefined, resizeMode: 'contain' }}
      />
    </View>
  )
}

Properties

Props Description Type Required
Image props ... It accepts all the Image props - -
thumbnailSource The source of the thumbnail image. Should be a low resolution version of the image used in source. ImageSourcePropType No
withIndicator Displaying ActivityIndicator component while the image is still loading. boolean No

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

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].