mirror of
https://github.com/git-touch/git-touch
synced 2025-01-19 02:40:05 +01:00
Fixed text overflow on trending page
This commit is contained in:
parent
0a18c67eb8
commit
3218d7fd4a
@ -60,12 +60,15 @@ class GhTrendingScreen extends StatelessWidget {
|
||||
color: theme.palette.secondaryText,
|
||||
),
|
||||
SizedBox(width: 4),
|
||||
Text(
|
||||
'${v.username} / ${v.repo.name}',
|
||||
style: TextStyle(
|
||||
fontSize: 17,
|
||||
color: theme.palette.secondaryText,
|
||||
),
|
||||
Expanded(
|
||||
child: Text(
|
||||
'${v.username} / ${v.repo.name}',
|
||||
style: TextStyle(
|
||||
fontSize: 17,
|
||||
color: theme.palette.secondaryText,
|
||||
),
|
||||
overflow: TextOverflow.ellipsis,
|
||||
)
|
||||
)
|
||||
],
|
||||
),
|
||||
|
Loading…
Reference in New Issue
Block a user