-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCode
More file actions
95 lines (85 loc) · 2.58 KB
/
Copy pathCode
File metadata and controls
95 lines (85 loc) · 2.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import 'package:flutter/material.dart';
void main() {
runApp(
MaterialApp(
home: Scaffold(
backgroundColor: Colors.teal,
body: SafeArea(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
CircleAvatar(
radius: 60.0,
backgroundImage: AssetImage('images/Fernondo-Alonso.jpg'),
),
Text('Fernando Alonso',
style: TextStyle(color:Colors.white,
fontFamily: 'Birthstone',
fontSize:40.0,
fontWeight: FontWeight.bold,
),
),
Text('FORMULA 1 RACING DRIVER',
style: TextStyle(
color:Colors.tealAccent,
fontFamily: 'SourceSansPro',
fontSize: 20.0,
letterSpacing: 2.5,
fontWeight: FontWeight.bold,
),
),
SizedBox(
height: 20.0,
width:300.0,
child: Divider(
color: Colors.teal.shade50,
),
),
Card(
color:Colors.white,
margin: EdgeInsets.all(10.0),
child: Row(
children: [
Icon(
Icons.add_call,
color:Colors.teal,
size:35.0,
),
SizedBox(
width: 15.0,
),
Padding(padding: EdgeInsets.all(28.0)),
Text('+44 123 456 789',
style: TextStyle(
fontSize: 22.0,
color: Colors.teal.shade900,
),
)
],
),
),
Card(
color:Colors.white,
margin: EdgeInsets.all(10.0),
child: ListTile(
leading: Icon(
Icons.email,
color:Colors.teal,
size:35.0,
),
title: Text('fernandoalonso_14@gmail.com',
style: TextStyle(
fontSize: 19.0,
// fontWeight: FontWeight.bold,
color: Colors.teal.shade900,
),
)
)
)
],
),
),
),
),
);
}