Uno Platform
.NET MAUI
Grial KIT
UXDivers
Design
Design

Emojis in .NET MAUI ❓🤩🚀📱

Explore how to effortlessly integrate Fluent Emojis into your .NET MAUI apps, enhancing user experience with vibrant, expressive icons.

Emojis in .NET MAUI ❓🤩🚀📱

Post by Flowbase
January 28, 2021
Post by
Diego Rivero
Jul 17, 2024
Emojis in .NET MAUI ❓🤩🚀📱

This article is part of the #MAUIUIJuly initiative by Matt Goldman.

Hi folks! Today, let's dive into the world of emojis! You might be wondering, what do emojis have to do with .NET MAUI? Well, emojis play a significant role in our daily lives. It's hard to imagine a day without reading or sending a bunch of them. Long gone are the days when emoticons were our only way to convey emotion in text ¯\_(ツ)_/¯  

But wait, why should we care as mobile devs? There’s plenty of reasons, let me share just a few:

  • Enhance user engagement: emojis can make interactions feel more personal and engaging. They add a layer of emotional expression that text alone often can't convey. This makes the user experience more enjoyable and can increase user retention.
  • Improve communication: emojis help bridge the communication gap, especially in global apps with diverse user bases. They can convey emotions, reactions, and tones that might be lost in translation. For instance, a thumbs-up emoji is universally understood as a sign of approval.
  • Cultural relevance: emojis are a part of modern digital culture and incorporating them into your app can make it feel more contemporary and in touch with current trends. This can be particularly appealing to younger users.
  • Consistency across platforms: emojis ensure consistent visual communication across different platforms and devices. Whether your app is used on iOS or Android, emojis will look and feel the same, maintaining a cohesive user experience.
  • They are free! yes, there’s several emoji libraries available for use under MIT license, so you have access to a huge amount of colorful icons in various styles, ready to use in your apps at no cost.

Here are a few screenshots taken from Grial UI Kit that showcase Emoji usage in a Mobile App’s context:

Sample pages emojis

As mentioned before, there are several emoji libraries that have permissive licenses, here are the most common:

In the rest of this article we’ll focus on Fluent Emojis.

How can I use Emojis in my .NET MAUI app?

Integrating into web apps is straightforward as they are usually available through npm packages. In fact, if we look at the top npm packages from jsdelivr we can see that the 5th most popular package is an emoji package that includes multiple libraries (including the ones mentioned before). This shows just how prevalent emojis are in today's digital world! 🌐

Most used npm packages

But the question is, how easy is it to use Fluent Emojis in a .NET MAUI app?

To simplify the process, we've prepared a repository with all the Fluent emojis (PNGs and SVGs) sorted with a proper nomenclature, making it easy to know the exact path of an emoji based on its Unicode. The original Fluent repo structure is more complex, with emoji names as folders and JSON files containing the metadata for each emoji.

Thanks to jsdelivr, we can access these PNG and SVG files through a fast and free CDN. Just for reference, the CDN URL of public GitHub repos can be obtained here

This is great, but there's one challenge: three of the four Fluent Emoji styles are in SVG (Color, Flat and High Contrast) format. While SVGs ensure you don't have to worry about pixelated images, .NET MAUI doesn't support loading dynamic SVGs out-of-the-box.

Note: If you know which emojis you will need at build time, you can always download the SVG files and include them with the MauiImage build action in your project. MAUI will generate PNGs for you so the Image control will just work.

For the purpose of loading remote SVGs into .NET MAUI we created the SvgImage control. Let's dive into how it works.

SvgImage control

The SvgImage control functions just like the regular Image control but expects an ImageSource in SVG format. It’s built using SkiaSharp, leveraging the Svg.Skia package to render SVGs. 

It follows the basic rules of drawn controls:

  1. Inherit from SKCanvasView
  2. Call InvalidateSurface() when a redraw is required
  3. Draw in the canvas inside the OnPaintSurface() method

The control manages streams from different ImageSources (Uri, File, Stream) and handles canceling source loading if the source changes. It exposes Loading, Ready, and Error events, giving the consumer full control over the control state. Additionally, it offers optional in-memory cache support, which can be extended by overriding the GetFromCache() and StoreOnCache() methods.

With these features, the SvgImage control makes it easy to incorporate dynamic SVGs into your .NET MAUI apps, ensuring smooth and high-quality image rendering.

Here's a sample code snippet:

   <local:SvgImage
       WidthRequest="50"
       HeightRequest="50"
       Source="{ Binding SvgSource }" />

FluentEmoji control

We also developed a FluentEmoji control that fetches images directly from the CDN. This control supports all four Fluent Emoji styles and renders either a PNG or SVG based on the selected style (3D style is only available in PNG format). Here’s a quick overview of its features:

  • Unicode Bindable Property: Allows you to select the emoji by setting its Unicode value.
  • Style Support: Automatically chooses between PNG and SVG formats depending on the selected Fluent Emoji style.
  • Placeholder Property: Sets a placeholder image that displays while the emoji is loading.
  • Error Property: Specifies an image to display in case of an error during loading.

With these properties, the FluentEmoji control makes it simple to integrate Fluent Emojis into your .NET MAUI apps 🎉

Here's a sample code snippet:

   <local:FluentEmoji
       WidthRequest="50"
       HeightRequest="50"
       EmojiStyle="Color"
       Unicode="{ Binding Code }"
       ErrorPlaceholder="notfound.png"
       Placeholder="loading.png" />

Fluent Emoji browser

Finally, we created a sample app that showcases all the emojis in all the styles. You can see it in action here (note that many emojis are not available in the High Contrast style):

Emoji browser

The repository containing the emoji browser and both controls can be found here.

Both SvgImage and FluentEmoji controls are also available in the Grial free tier NuGet package, so you can start using them in your app right away. You can read more about Grial's free tier here.

That’s all for today! As always, I hope this helps .NET developers add new flavor to their mobile applications! 😃

Happy coding! 🚀

Let us know if you have any feedback, and follow us here

Share this

Share this on XShare this on LinkedInShare this via InstagramShare this on WhatsAppShare this on reddit

Join our newsletter and get inspired.

Get news, tips, and resources right on your inbox!
Don’t worry we hate spam too ;)
Join our 4K+ .NET
developers community.
Stay tunned! Get pro design tips and updates.
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
Don’t worry we hate spam too ;)
Subscribe-Blog-Image

© 2015–2023 UXDivers | Grial