File tree Expand file tree Collapse file tree 7 files changed +23
-4
lines changed
Expand file tree Collapse file tree 7 files changed +23
-4
lines changed Original file line number Diff line number Diff line change 1+ ## [ 2.5.1] - 03 May 2023
2+
3+ - ** Fix** : Formatting issue in bubbles.dart file
4+ - ** Code** : Added scripts for deploy and dry-run
5+
16## [ 2.5.0] - 02 May 2023
27
38- ** Fix** : setState after the widget being disposed #4
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ In your flutter project(in pubspec.yaml) add the dependency:
1111
1212``` yaml
1313dependencies :
14- floating_bubbles : ^2.5.0
14+ floating_bubbles : ^2.5.1
1515` ` `
1616
1717Import the package:
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ BRANCH=" $( git rev-parse --abbrev-ref HEAD) "
4+ if [[ " $BRANCH " != " master" ]]; then
5+ echo ' Deploy script will only run in master branch.' ;
6+ exit 1;
7+ fi
8+
9+ echo ' Deploying to Pub...' ;
10+ dart format .
11+ flutter pub publish
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ dart format .
3+ flutter pub publish -n
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ packages:
6363 path: ".."
6464 relative: true
6565 source: path
66- version: "2.5.0 "
66+ version: "2.5.1 "
6767 flutter:
6868 dependency: "direct main"
6969 description: flutter
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ class _FloatingBubblesState extends State<FloatingBubbles> {
139139 }
140140 if (widget.duration != null && widget.duration != 0 )
141141 Timer (Duration (seconds: widget.duration! ), () {
142- if (mounted) {
142+ if (mounted) {
143143 setState (() {
144144 checkToStopAnimation = 1 ;
145145 });
Original file line number Diff line number Diff line change 11name : floating_bubbles
22description : A Flutter Package for adding Floating bubbles on the Foreground to any Flutter widget.
3- version : 2.5.0
3+ version : 2.5.1
44homepage : https://github.com/Poujhit/floating_bubbles
55environment :
66 sdk : ' >=2.12.0 <3.0.0'
You can’t perform that action at this time.
0 commit comments