-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathuser_header.dart
96 lines (93 loc) · 2.71 KB
/
user_header.dart
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
96
import 'package:antd_mobile/antd_mobile.dart';
import 'package:flutter/widgets.dart';
import 'package:flutter_vector_icons/flutter_vector_icons.dart';
import 'package:git_touch/utils/utils.dart';
import 'package:git_touch/widgets/avatar.dart';
import 'package:git_touch/widgets/mutation_button.dart';
class UserHeader extends StatelessWidget {
const UserHeader({
super.key,
required this.avatarUrl,
required this.name,
required this.login,
required this.createdAt,
required this.bio,
this.isViewer = false,
this.rightWidgets = const [],
});
final String? avatarUrl;
final String? name;
final String? login;
final DateTime? createdAt;
final String? bio;
final bool isViewer;
final List<Widget> rightWidgets;
@override
Widget build(BuildContext context) {
final right = isViewer
? [
MutationButton(
text: 'Switch accounts',
onTap: () {
context.pushUrl('/login');
},
)
]
: rightWidgets;
return Container(
padding: CommonStyle.padding,
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: <Widget>[
Row(
children: <Widget>[
Avatar(url: avatarUrl, size: AvatarSize.extraLarge),
if (right.isNotEmpty) ...[
Expanded(child: Container()),
...right,
]
],
),
if (name != null && name!.isNotEmpty)
Text(
name!,
style: TextStyle(
color: AntTheme.of(context).colorText,
fontSize: 20,
fontWeight: FontWeight.w600,
),
),
Text(
login!,
style: TextStyle(
color: AntTheme.of(context).colorPrimary, fontSize: 18),
),
if (createdAt != null)
Row(
children: <Widget>[
Icon(
Octicons.clock,
size: 16,
color: AntTheme.of(context).colorWeak,
),
const SizedBox(width: 4),
Text(
'Joined on ${dateFormat.format(createdAt!)}',
style: TextStyle(
color: AntTheme.of(context).colorWeak, fontSize: 16),
),
],
),
if (bio != null && bio!.isNotEmpty)
Text(
bio!,
style: TextStyle(
color: AntTheme.of(context).colorTextSecondary,
fontSize: 17,
),
)
].withSeparator(const SizedBox(height: 8)),
),
);
}
}