File tree Expand file tree Collapse file tree 1 file changed +54
-0
lines changed Expand file tree Collapse file tree 1 file changed +54
-0
lines changed Original file line number Diff line number Diff line change 1
1
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
+ )
You can’t perform that action at this time.
0 commit comments