fix: custom emote placeholder

- place emote loading spinner in the position as the emote itself
- add key to preview in order to ensure proper states aligned

Signed-off-by: TheOneWithTheBraid <the-one@with-the-braid.cf>
pull/444/head
TheOneWithTheBraid 2 years ago
parent f4107a8344
commit 465d5fc3ef

@ -263,6 +263,8 @@ class InputBar extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[
MxcImage(
// ensure proper ordering ...
key: ValueKey(suggestion['name']),
uri: suggestion['mxc'] is String
? Uri.parse(suggestion['mxc'] ?? '')
: null,

@ -212,16 +212,20 @@ class EmotesSettingsView extends StatelessWidget {
class _EmoteImage extends StatelessWidget {
final Uri mxc;
const _EmoteImage(this.mxc);
@override
Widget build(BuildContext context) {
const size = 38.0;
return MxcImage(
uri: mxc,
fit: BoxFit.contain,
width: size,
height: size,
return SizedBox.square(
dimension: size,
child: MxcImage(
uri: mxc,
fit: BoxFit.contain,
width: size,
height: size,
),
);
}
}

Loading…
Cancel
Save