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