Book Image

Microsoft Power Apps Cookbook

By : Eickhel Mendoza
Book Image

Microsoft Power Apps Cookbook

By: Eickhel Mendoza

Overview of this book

Microsoft Power Apps Cookbook is a complete resource filled with meticulously crafted recipes to help you build customized business apps that meet ever-changing enterprise demands. You will learn how to design modern apps with the low-code approach in a rapid application development environment by achieving enterprise-wide business agility.
Table of Contents (13 chapters)

Using the Power Apps component library

Through the chapter so far, we have seen the advantages of using components when building and maintaining applications. We encapsulate controls that work together for one purpose, and then we reuse them across our application.

However, if we wanted to use a specific component across several applications, our only resort would be to export this component and import it manually in each application. This process breaks maintainability because each application then has an independent copy of the component. If we update one component, all others remain unchanged.

The Power Apps component library is the solution to this. It acts as an independent library that can hold all the components you want to share across your applications. The best part is that if you update one from the library, the rest of the applications connected to this library will get an update notification creating seamless component lifecycle management.

Getting ready

To...