8000 Update listTile.dart · lazabe/flutter-code-snippets@f4ee65b · GitHub
[go: up one dir, main page]

Skip to content

Commit f4ee65b

Browse files
authored
Update listTile.dart
1 parent 41537f5 commit f4ee65b

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed

listTile.dart

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,54 @@
11

2+
Expanded(
3+
child: ListView(
4+
children: <Widget>[
5+
Card(
6+
elevation: 0,
7+
child: ListTile(
8+
leading: Icon(Icons.person,color: pPrimaryColor,),
9+
title: Text('Name'),
10+
subtitle: Text(
11+
'Deepa Pandey '
12+
),
13+
trailing: Icon(Icons.edit),
14+
),
15+
),
16+
Divider(
17+
color: Colors.grey[300],
18+
thickness: 1,
19+
indent: 65,
20+
endIndent: 5,
21+
),
22+
Card(
23+
elevation: 0,
24+
child: ListTile(
25+
leading: Icon(Icons.person,color: pPrimaryColor,),
26+
title: Text('About'),
27+
subtitle: Text(
28+
'habituated🤕wid coding👨‍💻 & covid🦠 '
29+
),
30+
trailing: Icon(Icons.edit),
31+
isThreeLine: true,
32+
),
33+
),
34+
Divider(
35+
color: Colors.grey[300],
36+
thickness: 1,
37+
indent: 65,
38+
endIndent: 5,
39+
),
40+
Card(
41+
elevation: 0,
42+
child: ListTile(
43+
leading: Icon(Icons.phone,color: pPrimaryColor,),
44+
title: Text('Phone'),
45+
subtitle: Text(
46+
'+91 12345 67890 '
47+
),
48+
trailing: Icon(Icons.edit),
49+
//isThreeLine: true,
50+
),
51+
),
52+
],
53+
),
54+
)

0 commit comments

Comments
 (0)
0