Skip to content

Commit 8f4ad9a

Browse files
authored
Update raw-material-button
1 parent f811ec2 commit 8f4ad9a

File tree

1 file changed

+32
-1
lines changed

1 file changed

+32
-1
lines changed

raw-material-button

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,38 @@ RawMaterialButton(
2323
=====================================================================================================
2424
=====================================================================================================
2525

26-
26+
RawMaterialButton(
27+
onPressed: () {},
28+
elevation: 25.0,
29+
fillColor: Colors.white,
30+
child: Icon(
31+
Icons.facebook_outlined,
32+
size: 50.0,
33+
color: Colors.blue,
34+
),
35+
padding: EdgeInsets.all(10.0),
36+
shape:CircleBorder(),
37+
),
38+
=====================================================================================================
39+
=====================================================================================================
40+
=====================================================================================================
41+
MaterialButton(
42+
color: Colors.white,
43+
elevation: 25,
44+
shape: CircleBorder(),
45+
onPressed: () {},
46+
child: Padding(
47+
padding: const EdgeInsets.all(10),
48+
child: Icon(
49+
Icons.mail,
50+
size: 50.0,
51+
color: Colors.red,
52+
),
53+
),
54+
)
55+
=====================================================================================================
56+
=====================================================================================================
57+
=====================================================================================================
2758

2859
RawMaterialButton(
2960
onPressed: () {},

0 commit comments

Comments
 (0)