-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathlistTile.dart
55 lines (53 loc) · 1.7 KB
/
listTile.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
Expanded(
child: ListView(
children: <Widget>[
Card(
elevation: 0,
child: ListTile(
leading: Icon(Icons.person,color: pPrimaryColor,),
title: Text('Name'),
subtitle: Text(
'Deepa Pandey '
),
trailing: Icon(Icons.edit),
),
),
Divider(
color: Colors.grey[300],
thickness: 1,
indent: 65,
endIndent: 5,
),
Card(
elevation: 0,
child: ListTile(
leading: Icon(Icons.person,color: pPrimaryColor,),
title: Text('About'),
subtitle: Text(
'habituated🤕wid coding👨💻 & covid🦠 '
),
trailing: Icon(Icons.edit),
isThreeLine: true,
),
),
Divider(
color: Colors.grey[300],
thickness: 1,
indent: 65,
endIndent: 5,
),
Card(
elevation: 0,
child: ListTile(
leading: Icon(Icons.phone,color: pPrimaryColor,),
title: Text('Phone'),
subtitle: Text(
'+91 12345 67890 '
),
trailing: Icon(Icons.edit),
//isThreeLine: true,
),
),
],
),
)