Link
Custom links to add to the app
Attributes
| Attribute | Type | Description |
|---|---|---|
| path | str | The destination URL or file system path that the link points to. |
| title | str | The display text or label shown to the user for this link. |
| is_relative | bool = False | Indicates whether the path should be interpreted as relative to the application root or as an absolute URL. |
Constructor
Signature
def Link(
path: str,
title: str,
is_relative: bool = False
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| path | str | The URL or file path for the link. |
| title | str | The display title for the link. |
| is_relative | bool = False | Whether the path is relative to the application root. |
Signature
def Link(
path: string,
title: string,
is_relative: boolean = False
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| path | string | The URL or file system path the link points to. |
| title | string | The display text shown to the user for this link. |
| is_relative | boolean = False | Indicates whether the path should be treated as relative to the application root or as an absolute URL. |