LinkOutput
Link output widget for displaying clickable hyperlinks.
Signature
def LinkOutput(
link_url: str,
link_text: str = 'Click here',
same_tab: bool = False,
full_width: bool = False
)
Parameters
Name | Description | Type | Default |
---|---|---|---|
link_url (required) | The URL that the link points to. | str | None |
link_text | The visible text of the link. | str | 'Click here' |
same_tab | Whether the link should open in the same tab. | bool | False |
full_width | Whether the link should take up the full width of its container. | bool | False |