1
0
mirror of https://github.com/git-touch/git-touch synced 2025-01-31 16:14:49 +01:00

[fix]: repo header text overflow (#56)

This commit is contained in:
Shreyas Thirumalai 2020-04-12 08:38:31 +05:30 committed by GitHub
parent 5487fd265f
commit 805f065def
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,12 +43,15 @@ class RepoHeader extends StatelessWidget {
linkUrl: avatarLink, linkUrl: avatarLink,
), ),
SizedBox(width: 8), SizedBox(width: 8),
Text( Expanded(
child: Text(
'$owner / $name', '$owner / $name',
style: TextStyle( style: TextStyle(
fontSize: 20, fontSize: 20,
color: theme.palette.primary, color: theme.palette.primary,
), ),
overflow: TextOverflow.visible,
),
), ),
], ],
), ),