gen_art_bg 0.5.1
gen_art_bg: ^0.5.1 copied to clipboard
Flutter Animated Generative Art Backgrounds collection. Can be used as a background or separately.
0.5.1 #
- Update CHANGELOG
0.4.1 #
- Update README
0.4.0 #
- Update README
- Add
RetroGridBackground
RetroGridBackground(
config: RetroGridConfig(
gridDarkColor: Color.fromRGBO(0, 255, 255, 0.7),
gridLightColor: Color.fromRGBO(255, 0, 128, 0.7),
shaderColors: [
Color(0xFF00FFFF),
Color(0xFFFF00FE),
Color(0xFFFFFF00),
],
gridSize: 30.0, // Size of the grid
angle: 65, // Angle of the grid lines
animationDuration: Duration(seconds: 1),
),
),
0.3.11 #
- Update "Used by" section
0.3.10 #
- Fix
AsciiCube:
textPainter.text = TextSpan(
text: dotChar,
style: TextStyle(
color: textColor,
fontSize: 14 * scale,
),
);
0.3.9 #
- Add
AsciiCube
AsciiCube(
backgroundColor: Colors.black,
textColor: Colors.white,
animationSpeed: 1.0,
scale: 1.0,
showDots: true, // like rolling dice
edgeChars: ['@', '#', '*', '+', '=', '&'],
dotChar: '●',
),
0.2.9 #
- Add "Used by" section at README
0.2.8 #
- Add
WaveFieldwidget ispired by bcarrca
WaveField(
gridStep: 15,
backgroundColor: Colors.black,
squareColor: Colors.white,
animationSpeed: 0.7,
),
- Add
BubbleFieldwidget ispired by bcarrca
BubbleField(
backgroundColor: Colors.black,
circleColor: Colors.white,
animationSpeed: 1.0,
gridSize: 100,
),
AnimatedSquaresnow includes the ability to select colors, soAnimatedColoredSquaresandAnimatedBwSquareshave been replaced by- A small code refactoring was performed
0.1.8 #
- Add Codacy (code quality) badge
0.1.7 #
- Fix CHANGELOG
0.1.6 #
- Add
DynamicShapeswidget ispired by Okazz
DynamicShapes(
colors: [Colors.blue, Colors.red, Colors.green],
maxShapes: 150,
minShapeSize: 0.02,
maxShapeSize: 0.08,
minActionPoints: 3,
maxActionPoints: 6,
animationSpeed: 1.5,
backgroundColor: Colors.black,
),
- Add
ExpandingCircleswidget ispired by Okazz
ExpandingCircles(
colors: [
Colors.blue,
Colors.red,
Colors.green,
// ... other colors
],
numberOfMovers: 15,
gridSize: 50,
blockScale: 0.75,
minSpeed: 5.0,
maxSpeed: 20.0,
backgroundColor: Color(0xFF050505),
),
0.0.6 #
- Updated README.md
0.0.5 #
- All widgets are adapted to different screen sizes
- Updated demos
- Removed Rotating Trapezium and Conic Gradient
0.0.4 #
- Update README.md
- Correcting a typographical error
- Remove Installing section
- Remove Import section
- Add badge with contacts information
- Update website link
- Update packages
0.0.3 #
- Update README.md
- Fixed an error in WaveDotGrid and PulsedCircleGrid name
- Add Medium article link
0.0.2 #
- Update README.md
- Update pubspec.yaml (add more package decsription)
- Format files
- Update dependencies
0.0.1 #
- Initial version.