CopilotHub
SearchPromptsInstructionsAgentsToolsMCPs
  1. Home
  2. Instructions
  3. Code Components for Canvas Apps
Back to Instructions

Code Components for Canvas Apps

**Note**: Certain APIs might not be available in canvas apps. We recommend that you check each API to determine where it's available.

typescript
0 downloads
39 views
0

Tags

security
best-practices
api

Related Instructions

View all →

Python Docstring Standards

*.py

Write clear and consistent Python docstrings

python
python
documentation
+1
1
117

API Route Security

app/api/**/*.ts

Security best practices for Next.js API routes

typescript
nextjs
security
api
+2
0
113

TypeScript Error Handling

*.ts

Comprehensive error handling patterns for TypeScript applications

typescript
typescript
error-handling
+1
0
101

React Component Best Practices

*.tsx

Guidelines for creating maintainable and performant React components

typescript
react
react
typescript
+2
0
116

WordPress Development — Copilot Instructions

Coding standards for wordpress.instructions

typescript
testing
security
+5
1
185

VueJS 3 Development Instructions

Coding standards for vuejs3.instructions

typescript
react
testing
security
+6
0
157
Browse More Instructions

CopilotHub

A curated collection of prompts, instructions, agents, and tools for AI-powered development.

Quick Links

  • Prompts
  • Instructions
  • Agents
  • Tools
  • MCPs
  • Search

Browse by Category

  • Code Generation
  • Debugging
  • Documentation
  • Refactoring
  • Testing
  • Security

Legal

  • Guidelines
  • About
  • Privacy Policy
  • Terms of Service

Community

GitHub

© 2026 CopilotHub.

Code Components for Canvas Apps

Professional developers can use Power Apps component framework to create code components that can be used in their canvas apps. App makers can use Power Apps component framework to create, import, and add code components to canvas apps using Microsoft Power Platform CLI.

Note: Certain APIs might not be available in canvas apps. We recommend that you check each API to determine where it's available.

Security Considerations

Warning: Code components contain code that may not be generated by Microsoft and can potentially access security tokens and data when rendered in Power Apps Studio. When adding code components to a canvas app, make sure that the code component solutions are from a trusted source. This vulnerability does not exist when playing the canvas app.

Security Warning in Power Apps Studio

When you open a canvas app that contains code components in Power Apps Studio, a warning message about potentially unsafe code appears. Code components in the Power Apps Studio environment have access to security tokens; hence only components from trusted sources should be opened.

Best Practices:

  • Administrators and system customizers should review and validate all code components before importing them into an environment
  • Make components available to makers only after validation
  • The Default publisher is shown when you import code components by using an unmanaged solution or when you have used pac pcf push to install your code component

Safety warning

Prerequisites

  • A Power Apps license is required. More information: Power Apps component framework licensing
  • System administrator privileges are required to enable the Power Apps component framework feature in the environment

Enable the Power Apps Component Framework Feature

To add code components to an app, you need to enable the Power Apps component framework feature in each environment where you want to use them. By default, the Power Apps component feature is enabled for model-driven apps.

Steps to Enable for Canvas Apps:

  1. Sign in to Power Apps

  2. Select Settings Settings, and then select Admin Center

    Settings and Admin Center

  3. On the left pane, select Environments, select the environment where you want to enable this feature, and then select Settings

  4. Expand Product, and select Features

  5. From the list of available features, turn on Power Apps component framework for canvas apps, and then select Save

    Enable Power Apps component framework

Implementing Code Components

After you enable the Power Apps component framework feature in your environment, you can start implementing the logic for code components. For a step-by-step tutorial, go to Create your first code component.

Recommendation: Check the limitations of code components in canvas apps before starting implementation.

Add Components to a Canvas App

  1. Go to Power Apps Studio

  2. Create a new canvas app, or edit an existing app to which you want to add the code component

    Important: Make sure the solution .zip file containing the code components has already been imported into Microsoft Dataverse before you proceed to the next step.

  3. On the left pane, select Add (+), and then select Get more components

    Insert components

  4. Select the Code tab, select a component from the list, and then select Import

    Import a component

  5. On the left pane, select +, expand Code components, and then select the component to add it to the app

    Add a component

Note: You can also add components by selecting Insert > Custom > Import component. This option will be removed in a future release, so we suggest using the flow described above.

Component Properties

On the Properties tab, you'll notice the code component properties are displayed.

Default code component properties pane

Note: Existing code components can be re-imported by updating the code component's manifest version if you want the properties to be available in the default Properties tab. As before, the properties will continue to be available on the Advanced properties tab.

Delete a Code Component from a Canvas App

  1. Open the app where you've added the code component

  2. On the left pane, select Tree view, and then select the screen where you've added the code component

  3. Next to the component, select More (...), and then select Delete

    Delete a code component

  4. Save the app to see the changes

Update Existing Code Components

Whenever you update the code components and want to see the runtime changes, you need to change the version property in the manifest file. We recommend that you change the version of the component whenever you make changes.

Note: Existing code components are updated only when the app is closed or reopened in Power Apps Studio. When you reopen the app, it asks you to update the code components. Simply deleting or adding code components back into the app won't update the components. Publish all the customizations in the updated solution first, otherwise updates made to the code component won't appear.

See Also

  • Power Apps component framework overview
  • Create your first code component
  • Learn Power Apps component framework