SetBackgroundColor sets the color of the modal frame background.
(color tcell.Color)
| 61 | |
| 62 | // SetBackgroundColor sets the color of the modal frame background. |
| 63 | func (m *WideModal) SetBackgroundColor(color tcell.Color) *WideModal { |
| 64 | m.form.SetBackgroundColor(color) |
| 65 | m.frame.SetBackgroundColor(color) |
| 66 | return m |
| 67 | } |
| 68 | |
| 69 | // SetTextColor sets the color of the message text. |
| 70 | func (m *WideModal) SetTextColor(color tcell.Color) *WideModal { |
no outgoing calls
no test coverage detected