Loading...

How to build a Power Apps Likert component

How to build a Power Apps Likert component

tl;dr

Power Apps components allow makers to reuse fragments and patterns of their work to ensure design consistency and developer productivity. This Likert component showcases also custom properties and is an alternative way to gather data from users.

What are components and why would you want them?

Makers can create reusable building blocks and save them as components to either use them in a specific app or to use them across apps with a component library. Benefits of creating components:

  • build once, use repeatedly - no need to reinvent the wheel over and over again
  • if a component needs to be updated, it is updated once which will be reflected in all instances that are used inside of an app
  • design consistency
  • enhanced user experience due to standardization
  • increased developer velocity
  • improved productivity

Creating components is an investment into better performing, good looking, easy debuggable and maintainable apps. It’s true, that the initial effort of building them is a bit higher than using regular controls (when only used one time), but the more a component is used and the more complex an app gets, the better is the return on investment of creating components.

Likert component: result

To give you an idea how the likert component looks like, you can watch it here in action

gif showing the Likert component in action

Nice thing about it: It is already working in three different themes (default, dark, high contrast) and the design matches Microsoft Teams. To make this happen, we need to adjust the OnStart property of our app to this code:

// THEME
Set(
gblThemeDark,
Param("theme") = "dark" Or drp_dropdown.SelectedText.Value = "dark"
);
Set(
gblThemeHiCo,
Param("theme") = "contrast" Or drp_dropdown.SelectedText.Value = "high contrast"
);
Set(
gblAppColors,
{
// Fluent Design Colors
HighContrastDisabled: ColorValue("#2EF149"),
HighContrastHyperlinks: ColorValue("#FFFD39"),
HighContrastSelectedBackground: ColorValue("#00EBFD"),
HighContrastSelectedText: ColorValue("#000000"),
NeutralWebGray30: ColorValue("#EDEBE9"),
OverlayTransparent: RGBA(0,0,0 0),
TeamsDarkTint10: ColorValue("#6264A7"),
TeamsDefaultPrimary: ColorValue("#6264A7")
}
);

Build the component

  1. Create a new canvas component and add
  • a slider control
  • a gallery with
    • a textlabel
    • an icon

likert component overview

  1. Create custom properties:

custom properties

  • SliderStyles as Record, add this code:
{
BorderColor:
If(gblThemeHiCo,gblAppColors.OverlayTransparent,gblThemeDark,gblAppColors.OverlayTransparent,gblAppColors.OverlayTransparent),
DisabledBorderColor:
If(gblThemeHiCo,gblAppColors.HighContrastDisabled,gblThemeDark,gblAppColors.NeutralWebGray150,gblAppColors.NeutralWebGray30),
FocusedBorderColor:
If(gblThemeHiCo,gblAppColors.HighContrastSelectedBackground,gblThemeDark,gblAppColors.TeamsDarkTint10,gblAppColors.TeamsDefaultPrimary),
HandleActiveFill:
If(gblThemeHiCo,gblAppColors.HighContrastHyperlinks,gblThemeDark,gblAppColors.TeamsDarkTint10,gblAppColors.TeamsDefaultPrimary),
HandleFill:
If(gblThemeHiCo,gblAppColors.HighContrastHyperlinks,gblThemeDark,gblAppColors.TeamsDarkTint10,gblAppColors.TeamsDefaultPrimary),
HandleHoverFill:If(gblThemeHiCo,gblAppColors.HighContrastHyperlinks,gblThemeDark,gblAppColors.TeamsDarkTint10,gblAppColors.TeamsDefaultPrimary),
RailFill:
If(gblThemeHiCo,gblAppColors.HighContrastHyperlinks,gblThemeDark,gblAppColors.TeamsDarkTint10,gblAppColors.TeamsDefaultPrimary),
RailHoverFill:
If(gblThemeHiCo,gblAppColors.HighContrastHyperlinks,gblThemeDark,gblAppColors.TeamsDarkTint10,gblAppColors.TeamsDefaultPrimary),
ValueFill:If(gblThemeHiCo,gblAppColors.HighContrastHyperlinks,gblThemeDark,gblAppColors.TeamsDarkTint10,gblAppColors.TeamsDefaultPrimary),
ValueHoverFill:
If(gblThemeHiCo,gblAppColors.HighContrastHyperlinks,gblThemeDark,gblAppColors.TeamsDarkTint10,gblAppColors.TeamsDefaultPrimary),
Default:3
}

which references the colors of the slider control to the ones that we set in OnStart of the app and sets the default value to 3.

  • GalleryStyles as Record, add this code:
{Color: gblAppStyles.Label.Color}

which references the colors of textlabel and icon

  • LikertContent as Table, add this code:
Table(
{
Id: 1,
Body: "Strongly Disagree",
Icon: Icon.EmojiFrown
},
{
Id: 2,
Body: "Disagree",
Icon: Icon.EmojiSad
},
{
Id: 3,
Body: "Neutral",
Icon: Icon.EmojiNeutral
},
{
Id: 4,
Body: "Agree",
Icon: Icon.EmojiSmile
},
{
Id: 5,
Body: "Strongly Agree",
Icon: Icon.EmojiHappy
}
)

which populates our gallery with an id (serves also as rating), the text to be displayed in the label and the icon to be displayed.

  • OnChange Behavior as Text, add one parameter Rating as Number. When we later ad an instance of our component to an app, we will call this function and update it to pass the current value from the slider.
  1. Work on the Slider
  • Set the Default property to cmp_Likert.SliderStyles.Default
  • Set the OnChange property to cmp_Likert.OnChange(sli_Rating.Value)
  1. Work on the Gallery
  • Set the Items property to cmp_Likert.LikertContent
  • Set the Icon property of the icon to ThisItem.Icon
  • Set the Text property of the textlabel to ThisItem.Body
  • Set the Height and Width properties of the icon to If(sli_Rating.Value= ThisItem.Id, 30, 20)
  • Set the Size property of the textlabel to If(sli_Rating.Value= ThisItem.Id, 11, 9)
  • Set the FontWeight property of the textlabel to If(sli_Rating.Value= ThisItem.Id, Bold, Normal)
  • Set the Color property of the icon to If(sli_Rating.Value= ThisItem.Id, cmp_Likert.SliderStyles.HandleActiveFill, cmp_Likert.GalleryStyles.Color)

Add the component to your app

Now that our component is complete

  • Add it to the app
  • Set the OnChange property to Set(gbl_likeValue, Rating)

What happens now is, that when you move the slider, the current value label and emoji are emphasized and a we store the current value in a variable.

Feedback & What’s next

I am curios - where would you use such a component? Can it replace rating DataCards? Which enhancement would you like to see? Tell me on twitter. If you found this blog post useful, please also subscribe to my newsletter - news coming about every 2 months, I promise to not spam you!

Published on:

Learn more
Luise Freese: Consultant & MVP
Luise Freese: Consultant & MVP

Recent content on Luise Freese: Consultant & MVP

Share post:

Related posts

An Unknown Error Occurred in an offline app in Power Apps

This week I spent a lot of time working on an app that had offline functionality half implemented. I got the error “An Unknown Error

1 day ago

Power Apps | Code Apps

Did you know that Code Apps allow developers to write custom code (React, Angular, Vue, etc.) that runs seamlessly within Power Platform. Code...

2 days ago

What’s new in Power Apps: June 2025 Feature Update

AI-powered Development Check out the latest updates in this month’s Power Apps Pulse! This month we’re giving you tools to share plans with yo...

4 days ago

5 Innovative Use Cases of Power Apps in Manufacturing, Healthcare & Finance

In today’s transformative digital space, businesses from a variety of industries are looking for agile solutions to improve productivity...

4 days ago

Canvas Power Apps and offline use – Building in practice

Canvas Power Apps has long had native support for offline use. In certain use cases, it’s a really cool feature. In theory, making an ap...

6 days ago

🔓 Understanding the “Access app scope” Feature in Canvas App Components (Power Apps)

💡 Introduction In Power Apps Canvas Apps, components play a crucial role in building reusable UI and logic blocks. However, traditionally, co...

11 days ago
Stay up to date with latest Microsoft Dynamics 365 and Power Platform news!
* Yes, I agree to the privacy policy