Skip to content

Commit

Permalink
update to v 0.3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
khlebobul committed Dec 24, 2024
1 parent d630817 commit 855bc12
Show file tree
Hide file tree
Showing 7 changed files with 411 additions and 1 deletion.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## 0.3.9

* Add `AsciiCube`

<img src="https://github.com/khlebobul/gen_art_bg/raw/main/screenshots/ascii_cube.gif" width="200px"> <img src="https://github.com/khlebobul/gen_art_bg/raw/main/screenshots/ascii_cube_dots.gif" width="200px">

```dart
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
Expand Down
28 changes: 28 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,20 @@ void main() {
animationSpeed: 0.7,
),
```

##### AsciiCube

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

## Showcase
Expand Down Expand Up @@ -337,6 +351,16 @@ void main() {
BubbleField
</td>
</tr>
<tr>
<td align="center">
<img src="https://github.com/khlebobul/gen_art_bg/raw/main/screenshots/ascii_cube.gif" width="100px">
<br />
AsciiCube
</td>
<td align="center"></td>
<td align="center"></td>
<td align="center"></td>
</tr>
</table>

## Bugs/Requests
Expand All @@ -362,6 +386,10 @@ Created by [Gled](https://khlebobul.github.io/) | khlebobul@gmail.com

[![X](https://img.shields.io/badge/X-000?style=for-the-badge&logo=x)](https://x.com/khlebobul) [![Telegram](https://img.shields.io/badge/Telegram-000?style=for-the-badge&logo=telegram&logoColor=2CA5E0)](https://t.me/khlebobul)

Support the project:
- [Telegram Stars](https://t.me/khlebobul_dev)
- [YooMoney](https://yoomoney.ru/to/4100118234947004)

Inspired by [flutter_spinkit](https://pub.dev/packages/flutter_spinkit)

And here are some cool articles and repos on the topic of generative art in Flutter
Expand Down
1 change: 1 addition & 0 deletions lib/gen_art_bg.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ export 'src/dynamic_shapes.dart';
export 'src/expanding_circles.dart';
export 'src/wave_field.dart';
export 'src/bubble_field.dart';
export 'src/ascii_cube.dart';
Loading

0 comments on commit 855bc12

Please sign in to comment.