File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ Here is an snippet on how to use Floating Bubbles to any Widget.
4747 paintingStyle: PaintingStyle.stroke,
4848 strokeWidth: 8,
4949 shape: BubbleShape.circle, // circle is the default. No need to explicitly mention if its a circle.
50+ speed: BubbleSpeed.normal, // normal is the default
5051 ),
5152 );
5253```
@@ -74,6 +75,8 @@ return Stack(
7475 opacity: 70,
7576 paintingStyle: PaintingStyle.fill,
7677 shape: BubbleShape.square,
78+ speed: BubbleSpeed.normal,
79+
7780 ),
7881);
7982```
@@ -92,6 +95,8 @@ return Stack(
9295| ` paintingStyle ` | Painting Style of the bubbles. | ** No** | ` PaintingStyle.fill ` |
9396| ` strokeWidth ` | Stroke Width of the bubbles. This value is effective only if ` Painting Style ` is set to ` PaintingStyle.stroke ` . | ** No** | ` 0 ` |
9497| ` shape ` | Shape of the bubbles. | ** No** | ` BubbleShape.circle ` |
98+ | ` speed ` | Control the speed of the bubbles. | ** No** | ` BubbleSpeed.normal ` |
99+
95100
96101---
97102
@@ -106,6 +111,8 @@ return Stack(
106111| ` paintingStyle ` | Painting Style of the bubbles. | ** No** | ` PaintingStyle.fill ` |
107112| ` strokeWidth ` | Stroke Width of the bubbles. This value is effective only if ` Painting Style ` is set to ` PaintingStyle.stroke ` . | ** No** | ` 0 ` |
108113| ` shape ` | Shape of the bubbles. | ** No** | ` BubbleShape.circle ` |
114+ | ` speed ` | Control the speed of the bubbles. | ** No** | ` BubbleSpeed.normal ` |
115+
109116
110117---
111118
You can’t perform that action at this time.
0 commit comments