Uncodie
Technical DocumentationNo CodeTutorialsChangelogDisccord
Developers
Developers
  • 📖Documentation
    • Basic Concepts
      • Node JS
      • React
      • Postgres SQL
      • GraphQL
      • Git
      • API
  • 🔌API
    • Getting Started
      • Credentials
    • Users
      • Register User
    • Component Interface
      • Props
  • 🤖IDE
    • Getting started
    • Component View
      • CSS
      • Controller
      • Component
    • Compiler
    • Importing Code
      • Scripts
        • Manifest
      • Connectors
        • Manifest
      • Components
        • Manifest
    • Exporting Code
      • Design Systems
        • Custom React libraries
      • Guidelines
  • ⚙️Figma Plugin
    • Variables
      • Global Variables
      • Local Variables
      • Route Variables
      • Session Context
      • Window Variables
    • Actions
      • GraphQL Trigger
      • Refresh Query
      • Set Variable
      • Select and Navigate
  • 🎛️Settings
    • User Authentication
    • Git
    • External Deployment
    • Version Control
    • External DB Setup
    • SEO
Powered by GitBook
On this page
  • Overview
  • Considerations

Was this helpful?

  1. Figma Plugin
  2. Variables

Global Variables

Generally available variables

PreviousVariablesNextLocal Variables

Last updated 1 year ago

Was this helpful?

Overview

Use these variables to pass an application state through components, screens, or different URLs.

You can use these variables for data binding, visual logic, scripts, or query parameters, and will be some of the most recurrent start points for your application.

Considerations

The usage of these variables will make the whole application redraw its children, if you for example use a variable to store an ID, every time this variable is updated all the children of the component using the variable will redraw as well.

Use this behavior ad your advantage to refresh your app when necessary but consider collections for more important data, as it will handle better UX aspects such as roles, field access, or loading behaviors.

⚙️