check_animation 0.0.3 copy "check_animation: ^0.0.3" to clipboard
check_animation: ^0.0.3 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(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: HomeScreen(),
    );
  }
}

class HomeScreen extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: Text('Home')),
      body: Center(
        child: ElevatedButton(
          onPressed: () {
            Navigator.push(
              context,
              MaterialPageRoute(
                builder: (context) => CheckAnimationScreen(
                  title: 'Welcome to Check Animation',
                  buttonText: 'Start',
                  onButtonPressed: () {
                    Navigator.pop(context);
                  },
                ),
              ),
            );
          },
          child: Text('Go to Animation'),
        ),
      ),
    );
  }
}

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.
1
likes
140
points
18
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package for customizable animations.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, vector_math

More

Packages that depend on check_animation