Skip to content

Releases: khlebobul/gen_art_bg

v 0.3.9

24 Dec 18:26
Compare
Choose a tag to compare
  • Add AsciiCube

AsciiCube(
        backgroundColor: Colors.black,
        textColor: Colors.white,
        animationSpeed: 1.0,
        scale: 1.0,
        showDots: true, // like rolling dice
        edgeChars: ['@', '#', '*', '+', '=', '&'],
        dotChar: '●',
      ),

v 0.2.8

21 Dec 11:08
Compare
Choose a tag to compare

0.2.8

  • Add WaveField widget ispired by bcarrca

  WaveField(
        gridStep: 15,
        backgroundColor: Colors.black,
        squareColor: Colors.white,
        animationSpeed: 0.7,
      ),
  • Add BubbleField widget ispired by bcarrca

  BubbleField(
        backgroundColor: Colors.black,
        circleColor: Colors.white,
        animationSpeed: 1.0,
        gridSize: 100,
      ),
  • AnimatedSquares now includes the ability to select colors, so AnimatedColoredSquares and AnimatedBwSquares have been replaced by
  • A small code refactoring was performed

version 0.1.8

12 Nov 03:28
Compare
Choose a tag to compare
  • Add Codacy (code quality) badge

version 0.1.7

03 Nov 09:35
Compare
Choose a tag to compare
  • fix CHANGELOG

version 0.1.6

03 Nov 09:29
Compare
Choose a tag to compare
  • Add DynamicShapes widget ispired by Okazz

DynamicShapes(
     colors: [Colors.blue, Colors.red, Colors.green],
     maxShapes: 150, // max number of shapes
     minShapeSize: 0.02, // min shape size
     maxShapeSize: 0.08, // max shape size
     minActionPoints: 3, // min number of actions
     maxActionPoints: 6, // max number of actions
     animationSpeed: 1.5, // animation speed
     backgroundColor: Colors.black, // background color
   ),
  • Add ExpandingCircles widget ispired by Okazz

ExpandingCircles(
        // Custom list of colors
        colors: [
          Colors.blue,
          Colors.red,
          Colors.green,
          // ... other colors
        ],
        // Number of moving circles
        numberOfMovers: 15,
        // Grid size (affects number of blocks)
        gridSize: 50,
        // Block scale (0.0 - 1.0)
        blockScale: 0.75,
        // Minimum circle expansion speed
        minSpeed: 5.0,
        // Maximum circle expansion speed
        maxSpeed: 20.0,
        // Background color
        backgroundColor: Color(0xFF050505),
      ),

version 0.0.6

31 Oct 06:56
Compare
Choose a tag to compare

Updated README.md:

  • Add header
  • Small fix

version 0.0.5

12 Oct 09:08
Compare
Choose a tag to compare
  • All widgets are adapted to different screen sizes
  • Updated demos
  • Removed Rotating trapezium and Conic Gradient