mirror of
https://github.com/git-touch/git-touch
synced 2025-01-19 10:49:49 +01:00
[fix]: repo header text overflow (#56)
This commit is contained in:
parent
5487fd265f
commit
805f065def
@ -43,12 +43,15 @@ class RepoHeader extends StatelessWidget {
|
|||||||
linkUrl: avatarLink,
|
linkUrl: avatarLink,
|
||||||
),
|
),
|
||||||
SizedBox(width: 8),
|
SizedBox(width: 8),
|
||||||
Text(
|
Expanded(
|
||||||
'$owner / $name',
|
child: Text(
|
||||||
style: TextStyle(
|
'$owner / $name',
|
||||||
fontSize: 20,
|
style: TextStyle(
|
||||||
color: theme.palette.primary,
|
fontSize: 20,
|
||||||
),
|
color: theme.palette.primary,
|
||||||
|
),
|
||||||
|
overflow: TextOverflow.visible,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
Loading…
Reference in New Issue
Block a user