File tree Expand file tree Collapse file tree 1 file changed +32
-1
lines changed Expand file tree Collapse file tree 1 file changed +32
-1
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,38 @@ RawMaterialButton(
23
23
=====================================================================================================
24
24
=====================================================================================================
25
25
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
+ =====================================================================================================
27
58
28
59
RawMaterialButton(
29
60
onPressed: () {},
You can’t perform that action at this time.
0 commit comments