This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Random80sLines extends CustomPainter { | |
| final double _animationValue; | |
| Random80sLines(this._animationValue); | |
| @override | |
| void paint(Canvas canvas, Size size) { | |
| final paint = Paint() | |
| ..color = Color.fromRGBO(255, 255, 255, _animationValue) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'dart:math'; | |
| import 'package:flutter/material.dart'; | |
| class CircularSpiralAnimation extends CustomPainter { | |
| final Animation<double> animation; | |
| final List<int> sequence; | |
| final List<Color> colorSequence; | |
| final double turns; | |
| final bool reverse; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dartdoc: | |
| nodoc: [ 'lib/utils/*.dart','lib/views/**/*.dart','lib/configs/*.dart','lib/controllers/**/*.dart' ] |