renderPickerView renders the PRD picker modal overlaid on the dashboard.
()
| 2096 | |
| 2097 | // renderPickerView renders the PRD picker modal overlaid on the dashboard. |
| 2098 | func (a *App) renderPickerView() string { |
| 2099 | // Render the dashboard in the background |
| 2100 | background := a.renderDashboard() |
| 2101 | |
| 2102 | // Overlay the picker |
| 2103 | a.picker.SetSize(a.width, a.height) |
| 2104 | picker := a.picker.Render() |
| 2105 | |
| 2106 | // For now, just return the picker (it handles centering) |
| 2107 | // In a more sophisticated implementation, we could overlay with transparency |
| 2108 | _ = background |
| 2109 | return picker |
| 2110 | } |
| 2111 | |
| 2112 | // GetPRD returns the current PRD. |
| 2113 | func (a *App) GetPRD() *prd.PRD { |
no test coverage detected