toloka.client.project.template_builder.view.DeviceFrameViewV1
| Source code
DeviceFrameViewV1( self, content: Optional[BaseComponent] = None, *, full_height: Optional[Union[BaseComponent, bool]] = None, max_width: Optional[Union[BaseComponent, float]] = None, min_width: Optional[Union[BaseComponent, float]] = None, ratio: Optional[Union[BaseComponent, List[Union[BaseComponent, float]]]] = None, hint: Optional[Any] = None, label: Optional[Any] = None, validation: Optional[BaseComponent] = None, version: Optional[str] = '1.0.0')
Wraps the content of a component in a frame that is similar to a mobile phone.
You can place other components inside the frame.
Parameters | Type | Description |
---|---|---|
content | Optional[BaseComponent] | Content inside the frame. |
full_height | Optional[Union[BaseComponent, bool]] | If true, the element takes up all the vertical free space. The element is set to a minimum height of 400 pixels. |
max_width | Optional[Union[BaseComponent, float]] | Maximum width of the element in pixels, must be greater than min_width. |
min_width | Optional[Union[BaseComponent, float]] | Minimum width of the element in pixels. Takes priority over max_width. |
ratio | Optional[Union[BaseComponent, List[Union[BaseComponent, float]]]] | An array of two numbers that sets the relative dimensions of the sides: width (first number) to height (second number). Not valid if full_height=true. |
hint | Optional[Any] | Hint text. |
label | Optional[Any] | Label above the component. |
validation | Optional[BaseComponent] | Validation based on condition. |