shadify 1.0.1 copy "shadify: ^1.0.1" to clipboard
shadify: ^1.0.1 copied to clipboard

A beautiful, customizable shimmer loading widget for Flutter that provides smooth gradient animations while content is loading.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:shadify/shadify.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(home: HomePage());
  }
}

class HomePage extends StatelessWidget {
  const HomePage({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Column(
        mainAxisAlignment: MainAxisAlignment.center,
        children: [
          Container(
            width: 200,
            margin: EdgeInsetsGeometry.symmetric(horizontal: 20, vertical: 20),
            decoration: BoxDecoration(
              color: Colors.lightBlue,
              borderRadius: BorderRadius.circular(20),
            ),
            height: 200,
          ).withShadifyLoading(
            loading: true,

            borderRadius: BorderRadius.circular(10),
          ),
          SizedBox(height: 20),
          Center(
            child: Text(
              "Heelo",
              style: TextStyle(fontSize: 16),
            ).withShadifyLoading(loading: true),
          ),
        ],
      ),
    );
  }
}
7
likes
140
points
21
downloads

Publisher

unverified uploader

Weekly Downloads

A beautiful, customizable shimmer loading widget for Flutter that provides smooth gradient animations while content is loading.

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on shadify