All Projects → hnvn → Flutter_shimmer

hnvn / Flutter_shimmer

Licence: bsd-3-clause
A package provides an easy way to add shimmer effect in Flutter project

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to Flutter shimmer

Create Content Loader
✏️ Tool to create your own react-content-loader easily.
Stars: ✭ 937 (-21.13%)
Mutual labels:  loading
Loading
loading...正在加载中的动画效果
Stars: ✭ 36 (-96.97%)
Mutual labels:  loading
Fiftyshadesof
An elegant context-care loading placeholder for Android
Stars: ✭ 1,110 (-6.57%)
Mutual labels:  loading
Awloader
AWLoader is a UI Component that allows you to integrate loader that fits your needs within your app.
Stars: ✭ 11 (-99.07%)
Mutual labels:  loading
Load Seed
⌛️ Garry's Mod loading screen skeleton to help developers quickly get started in building their own.
Stars: ✭ 31 (-97.39%)
Mutual labels:  loading
Css Spinner
small, elegant pure css spinner for ajax or loading animation
Stars: ✭ 1,013 (-14.73%)
Mutual labels:  loading
React Circle
Renders a svg circle + progress, it just works 💘
Stars: ✭ 925 (-22.14%)
Mutual labels:  loading
Iprogresshud
An elegant, lightweight and responsive progress HUD for iOS app with very simple usage. Available 32 indicators by NVActivityIndicatorView.
Stars: ✭ 66 (-94.44%)
Mutual labels:  loading
Spinners
A Sass mixin to generate fully customizable, pure CSS3 loading/busy indicators
Stars: ✭ 33 (-97.22%)
Mutual labels:  loading
Android Spinkit
Android loading animations
Stars: ✭ 8,096 (+581.48%)
Mutual labels:  loading
Android Circledialog
仿IOS圆角对话框、进度条、列表框、输入框,ad广告框,支持横竖屏切换
Stars: ✭ 880 (-25.93%)
Mutual labels:  loading
Dialogutil
common used dialog with material style ( in support v7),ios style,get top activity automatically, invoke everywhere (any thread , any window)
Stars: ✭ 948 (-20.2%)
Mutual labels:  loading
Vue Image Loader
Vue progressive image loader plugin like Medium
Stars: ✭ 47 (-96.04%)
Mutual labels:  loading
Angular Loading Feedback
Angular directive to indicate loads in app
Stars: ✭ 8 (-99.33%)
Mutual labels:  loading
Transitionbutton
UIButton sublass for loading and transition animation.
Stars: ✭ 1,124 (-5.39%)
Mutual labels:  loading
Similarloadingview
A stylish loading view for Android
Stars: ✭ 26 (-97.81%)
Mutual labels:  loading
Jhud
A full screen of the HUD when loading the data (Objective-C).
Stars: ✭ 1,003 (-15.57%)
Mutual labels:  loading
Listr2
NodeJS Task List derived from the best! Create beautiful CLI interfaces via easy and logical to implement task lists that feel alive and interactive.
Stars: ✭ 73 (-93.86%)
Mutual labels:  loading
Placeholder Loading
Simple and flexible, css only, content placeholder loading animation. https://zalog.github.io/placeholder-loading/
Stars: ✭ 1,137 (-4.29%)
Mutual labels:  loading
Oops
😥A library for android that help to show the layout of loading, error, empty etc.
Stars: ✭ 49 (-95.88%)
Mutual labels:  loading

Shimmer

pub package

A package provides an easy way to add shimmer effect in Flutter project

How to use

import 'package:shimmer/shimmer.dart';

SizedBox(
  width: 200.0,
  height: 100.0,
  child: Shimmer.fromColors(
    baseColor: Colors.red,
    highlightColor: Colors.yellow,
    child: Text(
      'Shimmer',
      textAlign: TextAlign.center,
      style: TextStyle(
        fontSize: 40.0,
        fontWeight:
        FontWeight.bold,
      ),
    ),
  ),
);

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