* Create a labeled value row.
(label: string, value: string, valueStyle: TextStyle = VALUE_STYLE)
| 125 | * Create a labeled value row. |
| 126 | */ |
| 127 | function labeledValue(label: string, value: string, valueStyle: TextStyle = VALUE_STYLE): VNode { |
| 128 | return ui.row({ gap: 1 }, [ |
| 129 | ui.text(`${label}:`, { style: LABEL_STYLE }), |
| 130 | ui.text(value, { style: valueStyle }), |
| 131 | ]); |
| 132 | } |
| 133 | |
| 134 | /** |
| 135 | * Create a debug panel widget. |