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

Skip to content

Commit 11b9329

Browse files
authored
Update listTile.dart
1 parent 9d3846f commit 11b9329

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

listTile.dart

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

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

0 commit comments

Comments
 (0)
0