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

Skip to content

Commit 41537f5

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

File tree

1 file changed

+1
-53
lines changed

1 file changed

+1
-53
lines changed

listTile.dart

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

0 commit comments

Comments
 (0)
0