mirror of
				https://gitlab.com/famedly/fluffychat.git
				synced 2025-11-04 06:17:26 +01:00 
			
		
		
		
	Merge branch 'braid/emoji-placeholder' into 'main'
fix: custom emote placeholder See merge request famedly/fluffychat!1127
This commit is contained in:
		
						commit
						8a6d726b8c
					
				@ -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…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user