FLUTTER ECOSYSTEM

sameersingh2704/glitcheffect

一个 Flutter 小部件,可为其子小部件提供故障动画效果。

glitcheffect 项目封面
Stars
7
Forks
3
最近推送(UTC)
2023年2月22日
项目状态
未归档
Sameer Singh GitHub avatar
GITHUB User

Sameer Singh ↗

A quick learner with experience in multiple technologies.

Unthinkable Solutions LLPGurgaon, HR, IN官方网站 ↗
语言Dart

技术话题

此仓库发布的插件

使用的依赖

依赖清单 3 项
  • flutter{"sdk":"flutter"}
  • flutter_test开发依赖{"sdk":"flutter"}
  • flutter_lints开发依赖^1.0.0

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 README

GlitchEffect

A Flutter widget that will give a Glitch Animation Effect to it's child widget.

Installation

  1. Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
  glitcheffect: ^1.1.1
  1. Import the package and use it in your Flutter App.
import 'package:glitcheffect/glitcheffect.dart';
  1. There are a number of properties that you can modify:
  • child : Widget on which you want a glitch effect.
  • repeat : Whether the glitch effect should play once or play over and over. [default value is true].
  • duration : How long it should take until the glitch effect repeats itself [default value is 3 seconds].
  • colors : List of colors that you want to use for glitch effect. [default colors are Black, Grey and White].
Preview

alt-text


Example

class GlitchEffectExample extends StatelessWidget {
  const GlitchEffectExample({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return GlitchEffect(
      child: Text(
        'Flutter',
        style: TextStyle(fontSize: 30, color: Colors.red),
      ),
    );
  }
}

Contributors