check_animation 0.0.1
check_animation: ^0.0.1 copied to clipboard
A Flutter package for customizable animations.
Check Animation Package #
This package provides a customizable animation screen for Flutter applications, allowing users to easily integrate animations into their apps.
Features #
- Animated screen transitions
- Customizable colors and text
- Easy integration with existing Flutter applications
Getting started #
To use this package, add it to your pubspec.yaml file:
dependencies:
check_animation: ^0.0.1
Usage #
Here is a simple example of how to use the CheckAnimationScreen:
import 'package:flutter/material.dart';
import 'package:check_animation/check_animation.dart';
void main() {
runApp(MaterialApp(
home: CheckAnimationScreen(
title: 'Welcome to Check Animation',
buttonText: 'Start',
onButtonPressed: () {
// Action when button is pressed
},
),
));
}
Additional information #
For more information, check the documentation or visit the GitHub repository.
Changelog #
0.0.1 #
- Initial release of the Check Animation package with basic functionality.