mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2025-02-20 08:00:39 +01:00
fix: MetaRow fontsize
This commit is contained in:
parent
cde8a30b65
commit
a13e673782
@ -254,7 +254,7 @@ class _MetaRow extends StatelessWidget {
|
|||||||
event.originServerTs.localizedTime(context),
|
event.originServerTs.localizedTime(context),
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
color: color.withAlpha(200),
|
color: color.withAlpha(200),
|
||||||
fontSize: 11,
|
fontSize: 11 * AppConfig.fontSizeFactor,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (event.hasAggregatedEvents(timeline, RelationshipTypes.Edit))
|
if (event.hasAggregatedEvents(timeline, RelationshipTypes.Edit))
|
||||||
@ -262,7 +262,7 @@ class _MetaRow extends StatelessWidget {
|
|||||||
padding: const EdgeInsets.only(left: 2.0),
|
padding: const EdgeInsets.only(left: 2.0),
|
||||||
child: Icon(
|
child: Icon(
|
||||||
Icons.edit_outlined,
|
Icons.edit_outlined,
|
||||||
size: 12,
|
size: 12 * AppConfig.fontSizeFactor,
|
||||||
color: color,
|
color: color,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@ -270,7 +270,7 @@ class _MetaRow extends StatelessWidget {
|
|||||||
if (ownMessage)
|
if (ownMessage)
|
||||||
Icon(
|
Icon(
|
||||||
displayEvent.statusIcon,
|
displayEvent.statusIcon,
|
||||||
size: 14,
|
size: 14 * AppConfig.fontSizeFactor,
|
||||||
color: color,
|
color: color,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user