File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
lib/src/presentation/screen Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,19 +22,19 @@ class IntroScreen extends StatelessWidget {
22
22
);
23
23
},
24
24
style: ButtonStyle (
25
- padding: MaterialStateProperty .all <EdgeInsetsGeometry ?>(
25
+ padding: WidgetStateProperty .all <EdgeInsetsGeometry ?>(
26
26
const EdgeInsets .all (8 ),
27
27
),
28
28
backgroundColor:
29
- MaterialStateProperty .all (Colors .white.withOpacity ( 0.4 )),
30
- shape: MaterialStateProperty .all <RoundedRectangleBorder >(
29
+ WidgetStateProperty .all (Colors .white.withValues (alpha : 0.4 )),
30
+ shape: WidgetStateProperty .all <RoundedRectangleBorder >(
31
31
RoundedRectangleBorder (
32
32
borderRadius: BorderRadius .circular (25.0 ),
33
33
),
34
34
),
35
35
),
36
36
icon: CircleAvatar (
37
- backgroundColor: Colors .white.withOpacity ( 0.2 ),
37
+ backgroundColor: Colors .white.withValues (alpha : 0.2 ),
38
38
child: const Icon (Icons .arrow_back, color: Colors .white),
39
39
),
40
40
label: Text (
You can’t perform that action at this time.
0 commit comments