flutter_flash_curve 0.0.5 copy "flutter_flash_curve: ^0.0.5" to clipboard
flutter_flash_curve: ^0.0.5 copied to clipboard

A new Flutter package with a flash curve animation.

flutter_flash_curve #

A Flutter package to create a flash curve animation.

opacityFlash scaleFlash translateFlash rotateFlash

πŸ“± Usage #

  1. Import package in your file
import 'package:flutter_flash_curve/flutter_flash_curve.dart';
  1. Use one of the FlashCurve | InFlashCurve | OutFlashCurve curve classes.
    //...

    final _controller = AnimationController(
        vsync: this,
        duration: const Duration(milliseconds: 500),
    );

    //...

    final curve = FlashCurve(flashes = 8);
    // or
    // final curve = InFlashCurve(flashes = 8);
    // or
    // final curve = OutFlashCurve(flashes = 8);

    final opacityTween = Tween(begin: 1.0, end: 0.2).animate(CurvedAnimation(
        parent: _controller,
        reverseCurve: curve.flipped,
        curve: curve,
    ));

    //...

    AnimatedBuilder(
        animation: _controller,
        builder: (_, child) {
            return Opacity(
                opacity: opacityTween.value,
                child: child,
            );
        },
        child: const FlutterLogo(size: 100),
    ),

    //...

πŸŽ› Attributes #

Attribute Data type Description Default
flashes int Number of flash periods 8

🎨 Flash Curve Types Enum #

  • flash -> FlashCurveType.flash
  • inFlash -> FlashCurveType.inFlash
  • outFlash -> FlashCurveType.outFlash

πŸ“¦ Extensions #

Extension Description Result
FlashCurveType->curve Returns the curve of the FlashCurveType Curve

πŸ’» Author #

AnΔ±l Sorgit - GitHub

1
likes
130
pub points
20%
popularity

Publisher

unverified uploader

A new Flutter package with a flash curve animation.

Repository (GitHub)
View/report issues

Documentation

API reference

Funding

Consider supporting this project:

www.buymeacoffee.com

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_flash_curve