mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2025-05-11 13:05:37 +02:00
fix: minor UI and UX fixes
This commit is contained in:
parent
165bd4aec2
commit
3a63f63a3c
4 changed files with 15 additions and 24 deletions
|
@ -54,7 +54,12 @@ class _LatestCommitCardState extends State<LatestCommitCard> {
|
|||
'latestCommitCard.loadingLabel',
|
||||
),
|
||||
builder: (context, snapshot) => Text(
|
||||
"${snapshot.data!} ago",
|
||||
snapshot.data!.isNotEmpty
|
||||
? snapshot.data!
|
||||
: FlutterI18n.translate(
|
||||
context,
|
||||
'latestCommitCard.loadingLabel',
|
||||
),
|
||||
style: robotoTextStyle,
|
||||
),
|
||||
),
|
||||
|
@ -82,7 +87,12 @@ class _LatestCommitCardState extends State<LatestCommitCard> {
|
|||
'latestCommitCard.loadingLabel',
|
||||
),
|
||||
builder: (context, snapshot) => Text(
|
||||
"${snapshot.data!} ago",
|
||||
snapshot.data!.isNotEmpty
|
||||
? snapshot.data!
|
||||
: FlutterI18n.translate(
|
||||
context,
|
||||
'latestCommitCard.loadingLabel',
|
||||
),
|
||||
style: robotoTextStyle,
|
||||
),
|
||||
),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue