mirror of
https://github.com/pd4d10/git-touch.git
synced 2026-04-30 19:37:35 -05:00
improvement: style tweaks
This commit is contained in:
@@ -74,14 +74,14 @@ class IssueItem extends StatelessWidget {
|
||||
text: '#${payload['number']}',
|
||||
style: TextStyle(
|
||||
color: theme.palette.tertiaryText,
|
||||
fontSize: 15,
|
||||
fontWeight: FontWeight.normal,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
style: TextStyle(
|
||||
fontSize: 17,
|
||||
color: theme.palette.primary,
|
||||
color: theme.palette.text,
|
||||
fontWeight: FontWeight.w600,
|
||||
),
|
||||
),
|
||||
@@ -107,12 +107,10 @@ class IssueItem extends StatelessWidget {
|
||||
children: <Widget>[
|
||||
// FIXME: Deleted user
|
||||
if (payload['author'] != null) ...[
|
||||
Link(
|
||||
url: '/' + payload['author']['login'],
|
||||
child: Avatar(
|
||||
size: AvatarSize.extraSmall,
|
||||
url: payload['author']['avatarUrl'],
|
||||
),
|
||||
Avatar(
|
||||
size: AvatarSize.extraSmall,
|
||||
url: payload['author']['avatarUrl'],
|
||||
linkUrl: '/' + payload['author']['login'],
|
||||
),
|
||||
SizedBox(width: 4),
|
||||
Text(
|
||||
|
||||
Reference in New Issue
Block a user