@@ -92,28 +92,43 @@ class _ExampleState extends State<Example> {
9292 ),
9393 counterCard (Curves .easeInOutCirc),
9494 counterCard (Curves .easeInOutCirc,
95- builder: (width, height) =>
96- Container (width: width, height: height, decoration: BoxDecoration (color: Colors .purple, borderRadius: BorderRadius .circular (5.0 ))),
95+ builder: (width, height) => Container (
96+ width: width,
97+ height: height,
98+ decoration: BoxDecoration (
99+ color: Colors .purple,
100+ borderRadius: BorderRadius .circular (5.0 ))),
97101 wiperWidth: 50 ),
98102 counterCard (
99103 Curves .linear,
100- builder: (width, height) =>
101- Container (width: width, height: height, decoration: BoxDecoration (color: Colors .purple, borderRadius: BorderRadius .circular (5.0 ))),
104+ builder: (width, height) => Container (
105+ width: width,
106+ height: height,
107+ decoration: BoxDecoration (
108+ color: Colors .purple,
109+ borderRadius: BorderRadius .circular (5.0 ))),
102110 wiperWidth: 10 ,
103111 deformingFactor: 0.2 ,
104112 direction: WiperDirection .up,
105113 ),
106- counterCard (Curves .easeInOutCirc, padding: EdgeInsets .symmetric (horizontal: 15.0 , vertical: 30.0 )),
114+ counterCard (Curves .easeInOutCirc,
115+ padding: EdgeInsets .symmetric (
116+ horizontal: 15.0 , vertical: 30.0 )),
107117 counterCard (Curves .easeOutSine,
108118 builder: (width, height) => Container (
109119 width: width,
110120 height: height,
111- decoration: BoxDecoration (color: Colors .red, shape: BoxShape .circle),
121+ decoration: BoxDecoration (
122+ color: Colors .red, shape: BoxShape .circle),
112123 ),
113124 wiperWidth: 20 ),
114125 counterCard (Curves .easeOutSine,
115- builder: (width, height) =>
116- Container (width: width, height: height, decoration: BoxDecoration (color: Colors .purple, borderRadius: BorderRadius .circular (5.0 ))),
126+ builder: (width, height) => Container (
127+ width: width,
128+ height: height,
129+ decoration: BoxDecoration (
130+ color: Colors .purple,
131+ borderRadius: BorderRadius .circular (5.0 ))),
117132 wiperWidth: 20 ,
118133 direction: WiperDirection .left),
119134 counterCardCircle (Curves .linear),
@@ -171,7 +186,8 @@ class _ExampleState extends State<Example> {
171186 );
172187
173188 Widget counterCardCircle (Curve curve, {WiperBuilder ? builder}) => InkWell (
174- onTap: () => Navigator .of (context).push (MaterialPageRoute (builder: (c) => LoadingScaffold ())),
189+ onTap: () => Navigator .of (context)
190+ .push (MaterialPageRoute (builder: (c) => LoadingScaffold ())),
175191 child: Card (
176192 elevation: 5.0 ,
177193 child: CircularWidgetLoading (
@@ -180,7 +196,8 @@ class _ExampleState extends State<Example> {
180196 rollingFactor: 0.8 ,
181197 loading: loading,
182198 child: Padding (
183- padding: const EdgeInsets .symmetric (horizontal: 15.0 , vertical: 50.0 ),
199+ padding: const EdgeInsets .symmetric (
200+ horizontal: 15.0 , vertical: 50.0 ),
184201 child: ListTile (
185202 leading: Text (
186203 'Counter' ,
0 commit comments