Last updated:
0 purchases
flutter load kit
🧩 LoadKit #
A package that contains loading indicators built with flutter. Package is inspired by @jogbom's Flutter_SpinKit.
💻 Getting started #
Add the load_kit dependency to your pubspec.yaml file like this:
dependencies:
flutter_load_kit: 0.0.1
copied to clipboard
Import #
Import the flutter load_kit package like so:
import 'package:flutter_load_kit/flutter_load_kit.dart';
copied to clipboard
Usage #
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',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const Scaffold(
body: Center(
child: SizedBox(
width: 300,
child: LoadKitLineChase(
itemCount: 7,
),
),
),
),
);
}
}
copied to clipboard
🪄 What to Expect in the package #
360
FilledCircle
FoldingSquares
LineChase
PulseLines
RotatingLines
RotationArcs
ScalingWave
SpinningArcs
WaterDroplet
BUGS/CONTRIBUTIONS/REQUESTS #
If you encounter any problems using this package, please feel free to open an issue.
If you'd like to contribute to this package, kindly open a pull request here
👷🏽 Contributors #
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.