Skip to main content

Routes and pages

👉 Choose User interfaces in the main menu.
Select the Flutter user interface. Select the RELATED tab.
Choose PAGES on the left.

Declaring pages​

Pages are the primary method to make your (custom) components available under certain routes. A page can contain multiple page blocks.

What do you need to configure on your page?

  • Name: the name of your page.
  • Show page title: whether to show a page title or not.
  • Routes: one or more routes that are linked to your page.

Note: don't start your routes with / or /app. All pages are routed under /app automatically.

Declaring page blocks​

Once you declared your page, you can add page blocks.

What do you need to configure on your page block?

  • Name: the name of your page block, it isn't showed anywhere.
  • Width: this property is not supported in Flutter/Dart, keep the default value: 12.
  • Order: order, important when you specify multiple page blocks.
  • Component: required, the component to show on the page block.