diff --git a/CHANGELOG.md b/CHANGELOG.md index 6abce3c..b35e0d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,4 +9,9 @@ * **Now with `BlurBox` you can use the blur effect in Flutter more easily than before** * **Wait for cool updates** -* **Update README.md file :)** \ No newline at end of file +* **Update README.md file :)** + +## 0.0.3 - [26 March 2024]. + +* **Code optimization** +* **Fix README.md bugs :)** \ No newline at end of file diff --git a/README.md b/README.md index 4ae2856..01e5329 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ with the difference that this container is BlurBox ```yaml dependencies: - blurbox: 0.0.2 + blurbox: 0.0.3 ``` ```dart diff --git a/example/lib/main.dart b/example/lib/main.dart index e659eb3..c503a71 100644 --- a/example/lib/main.dart +++ b/example/lib/main.dart @@ -54,10 +54,9 @@ class ExampleOne extends StatelessWidget { child: BlurBox( width: 200, height: 150, - + blur: 5.0, borderRadius: BorderRadius.circular(40), border: Border.all(color: const Color(0xff4d4d4d)), - blur: 5.0, // Adjust blur amount child: const Center( child: Text( 'BlurBox!', @@ -69,6 +68,7 @@ class ExampleOne extends StatelessWidget { Positioned( left: 20, top: 175, + //You can use all the properties provided by the container here child: BlurBox( width: 200, height: 150, @@ -134,7 +134,7 @@ class ExampleTwo extends StatelessWidget { blur: 5.0, child: Center( child: Text( - 'Blur Backgruond!', + 'Blur Background!', style: TextStyle(fontSize: 24.0), ), ), diff --git a/pubspec.yaml b/pubspec.yaml index 0c9d626..85e40a8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: blurbox description: "A Flutter package that applies a blur effect to its child widget." -version: 0.0.2 +version: 0.0.3 homepage: https://github.com/OmidHaqi/blurbox environment: