TL;DR
Text Input
control (to collect user feedback) and a Button
(to send the feedback).Label
to display the feedback. Initially, configure its Text
property as an empty string (""
).A beginner's tutorial on creating a simple Canvas app from scratch in Microsoft Power Apps.
A Canvas App is one of the application types you can create using Microsoft Power Apps. Unlike Model-driven apps, which rely primarily on the underlying data model and come with a set UI, Canvas apps provide the flexibility to design your app's UI starting from a blank slate, much like drawing on an empty canvas. This customisation granularity enables developers and business users to build a distinct user interface tailored to specific business needs.
Why is it crucial in Power Apps development? With Canvas Apps, you can:
Let's walk through the process of creating a fundamental Canvas app that collects and displays user feedback:
Text Input
control (to gather user feedback) and a Button
(to submit the feedback).Label
to display the feedback. Initially, set its Text
property to an empty string (""
).Here's a rudimentary formula to capture and present feedback when the button is clicked:
Button.OnSelect = Set(FeedbackValue, TextInput1.Text);
Label.Text = FeedbackValue;
Upon clicking the button, it fetches the text from the TextInput
control, stores it in a variable named FeedbackValue
, and then the Label
control displays this value.
What is NOT required to start designing a canvas app in Microsoft Power Apps?
Thank you for reading! Dive deeper into Microsoft Power Apps development with our subsequent posts.