-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathraw-material-button.dart
80 lines (75 loc) · 3.08 KB
/
raw-material-button.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
RawMaterialButton(
onPressed: () {},
elevation: 2.0,
fillColor: Colors.white,
child: Icon(
Icons.chat_rounded,
size: 35.0,
color: pPrimaryColor,
),
padding: EdgeInsets.all(15.0),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(120.0),
side: BorderSide(
color: Colors.black,
width: 2
),
),
),
=====================================================================================================
=====================================================================================================
=====================================================================================================
RawMaterialButton(
onPressed: () {},
elevation: 25.0,
fillColor: Colors.white,
child: Icon(
Icons.facebook_outlined,
size: 50.0,
color: Colors.blue,
),
padding: EdgeInsets.all(10.0),
shape:CircleBorder(),
),
=====================================================================================================
=====================================================================================================
=====================================================================================================
MaterialButton(
color: Colors.white,
elevation: 25,
shape: CircleBorder(),
onPressed: () {},
child: Padding(
padding: const EdgeInsets.all(10),
child: Icon(
Icons.mail,
size: 50.0,
color: Colors.red,
),
),
)
=====================================================================================================
=====================================================================================================
=====================================================================================================
RawMaterialButton(
onPressed: () {},
elevation: 2.0,
fillColor: Colors.white,
child: Icon(
Icons.chat_rounded,
size: 35.0,
color: pPrimaryColor,
),
padding: EdgeInsets.all(15.0),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(120.0),
side: isDark == true ? BorderSide(
color: Colors.white,
width: 2
):
BorderSide(
color: Colors.black,
width: 2
),
),
),