flutter_load_kit 0.0.2 copy "flutter_load_kit: ^0.0.2" to clipboard
flutter_load_kit: ^0.0.2 copied to clipboard

A package that contains reusable animated loading indicators.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Loadkit Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const Scaffold(
        body: Center(
          child: SizedBox(
            width: 300,
            child: LoadKitLineChase(
              itemCount: 7,
            ),
          ),
        ),
      ),
    );
  }
}
19
likes
140
points
42
downloads

Publisher

unverified uploader

Weekly Downloads

A package that contains reusable animated loading indicators.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_load_kit