Introduction

Glassmorphism is a popular design trend that adds a sleek and modern look to user interfaces.
This blog post will explore how to create a glassmorphism effect in Power Apps, Microsoft's low-code application development platform.

Steps to Create a Glassmorphism Effect in Power Apps,

Setting up the Background

Create a new canvas app in Power Apps.

Add an Image control to the screen to serve as the background.

Add an Html Control and add the below code

"<div style =' width:"& Self.Width-100&"px; height: "&Self.Height-100&"px; background:rgba(100,100,100,0.5);backdrop-filter: blur(5px); border-radius: 65px 65px 65px 65px '> </div>"

Customizing Controls

Output Example

image

Conclusion

This blog post explored how to create a glassmorphism effect in Power Apps. By customizing the background, controls, and shadows, you can achieve a sleek and modern design that follows the glassmorphism trend.