mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-27 06:39:25 +01:00
chore: remove Noto Emoji Compat font file
Signed-off-by: TheOneWithTheBraid <the-one@with-the-braid.cf>
This commit is contained in:
parent
2e87050544
commit
8a8676dfad
Binary file not shown.
@ -7,6 +7,7 @@ import 'package:matrix/matrix.dart';
|
||||
|
||||
import 'package:fluffychat/config/app_config.dart';
|
||||
import 'package:fluffychat/utils/platform_infos.dart';
|
||||
import 'package:fluffychat/widgets/animated_emoji_plain_text.dart';
|
||||
import 'package:fluffychat/widgets/avatar.dart';
|
||||
import 'package:fluffychat/widgets/matrix.dart';
|
||||
import 'package:fluffychat/widgets/mxc_image.dart';
|
||||
@ -115,7 +116,7 @@ class _Reaction extends StatelessWidget {
|
||||
? Colors.white
|
||||
: Colors.black;
|
||||
final color = Theme.of(context).scaffoldBackgroundColor;
|
||||
final fontSize = DefaultTextStyle.of(context).style.fontSize;
|
||||
final fontSize = DefaultTextStyle.of(context).style.fontSize ?? 12;
|
||||
Widget content;
|
||||
if (reactionKey!.startsWith('mxc://')) {
|
||||
content = Row(
|
||||
@ -126,7 +127,7 @@ class _Reaction extends StatelessWidget {
|
||||
width: 9999,
|
||||
height: fontSize,
|
||||
watermarkColor: color,
|
||||
watermarkSize: (fontSize ?? 12) / 1.5,
|
||||
watermarkSize: fontSize / 1.5,
|
||||
),
|
||||
const SizedBox(width: 4),
|
||||
Text(
|
||||
@ -143,12 +144,10 @@ class _Reaction extends StatelessWidget {
|
||||
if (renderKey.length > 10) {
|
||||
renderKey = renderKey.getRange(0, 9) + Characters('…');
|
||||
}
|
||||
content = Text(
|
||||
content = TextLinkifyEmojify(
|
||||
'$renderKey $count',
|
||||
style: TextStyle(
|
||||
color: textColor,
|
||||
fontSize: DefaultTextStyle.of(context).style.fontSize,
|
||||
),
|
||||
textColor: textColor,
|
||||
fontSize: fontSize,
|
||||
);
|
||||
}
|
||||
return InkWell(
|
||||
@ -232,7 +231,12 @@ class _AdaptableReactorsDialog extends StatelessWidget {
|
||||
),
|
||||
);
|
||||
|
||||
final title = Center(child: Text(reactionEntry!.key!));
|
||||
final title = Center(
|
||||
child: TextLinkifyEmojify(
|
||||
reactionEntry!.key!,
|
||||
fontSize: Theme.of(context).textTheme.headlineLarge?.fontSize ?? 24,
|
||||
),
|
||||
);
|
||||
|
||||
return PlatformInfos.isCupertinoStyle
|
||||
? CupertinoAlertDialog(
|
||||
|
@ -146,11 +146,6 @@ flutter:
|
||||
- family: Noto Color Emoji
|
||||
fonts:
|
||||
- asset: fonts/NotoEmoji/NotoColorEmoji.ttf
|
||||
- family: Noto Color Emoji Compat
|
||||
fonts:
|
||||
# This file is gathered from https://mvnrepository.com/artifact/androidx.emoji/emoji-bundled/
|
||||
# Was a hazzle to find it.
|
||||
- asset: fonts/NotoColorEmojiCompat.ttf
|
||||
- family: Noto Sans Symbols
|
||||
fonts:
|
||||
- asset: fonts/NotoSansSymbols-VariableFont_wght.ttf
|
||||
|
Loading…
Reference in New Issue
Block a user