textPainter.text = TextSpan(
text: dotChar,
style: TextStyle(
color: textColor,
fontSize: 14 * scale,
),
);
AsciiCube(
backgroundColor: Colors.black,
textColor: Colors.white,
animationSpeed: 1.0,
scale: 1.0,
showDots: true, // like rolling dice
edgeChars: ['@', '#', '*', '+', '=', '&'],
dotChar: '●',
),
- Add "Used by" section at README
- 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
- Add Codacy (code quality) badge
- Add
DynamicShapes
widget 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
ExpandingCircles
widget 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),
),
- All widgets are adapted to different screen sizes
- Updated demos
- Removed Rotating Trapezium and Conic Gradient
- Update README.md
- Correcting a typographical error
- Remove Installing section
- Remove Import section
- Add badge with contacts information
- Update website link
- Update packages
- Update README.md
- Fixed an error in WaveDotGrid and PulsedCircleGrid name
- Add Medium article link
- Update README.md
- Update pubspec.yaml (add more package decsription)
- Format files
- Update dependencies