pjkm.tui.screens.review¶
Review screen: confirm choices before building.
Classes¶
Review all choices before executing the build. |
Module Contents¶
- class pjkm.tui.screens.review.ReviewScreen(project_name, archetype, groups)[source]¶
Bases:
textual.screen.ScreenReview all choices before executing the build.
- Parameters:
project_name (str)
archetype (pjkm.core.models.project.Archetype)
- compose()[source]¶
Called by Textual to create child widgets.
This method is called when a widget is mounted or by setting recompose=True when calling [refresh()][textual.widget.Widget.refresh].
Note that you don’t typically need to explicitly call this method.
Example
```python def compose(self) -> ComposeResult:
yield Header() yield Label(“Press the button below:”) yield Button() yield Footer()
- Return type:
textual.app.ComposeResult