display_screen
- 1 Minute to read
display_screen
- 1 Minute to read
Article summary
Did you find this summary helpful?
Thank you for your feedback
display_screen()
This method shows an informative screen.
An informative screen is being used to display information about some process/flow, without asking for feedback from the user. This component is typically used while the program is loading, the robot is performing a task or about to perform a task
Reference
Explore more about this component here
Arguments
Arguments | Type | Default Value | |
---|---|---|---|
title | string | title of the screen (mandatory) | |
subtitle | string | subtitle of the screen (optional) | |
show_loader | boolean | False | If True , a loader is displayed in the center of the screen |
theme | enum | THEME_TYPE.DARK | enum to define the theme of the screen. Can be DARK or WHITE |
Return
None
Example
await self.UI.display_screen(title="Navigating to kitchen", subtitle="will be there soon", show_loader=True)
Was this article helpful?