Home > Mobile >  Call layout within a layout using RICH PYTHON , when user give a keyboard input
Call layout within a layout using RICH PYTHON , when user give a keyboard input

Time:11-30

I have a layout( live display), which showing some database information, . My requirement is If user provides an input from keyboard on layout one, then a new layout will be called, which holds different set of rich renderables.

I didnt find any information for the same in rich document portal.

Any hint/suggestion on how to proceed would be helpful.

CodePudding user response:

Rich doesn't support this out of the box. For keyboard handling, have a look at Textual

  • Related