(&mut self, color: Color)
| 389 | } |
| 390 | |
| 391 | pub fn set_spinner_color(&mut self, color: Color) { |
| 392 | self.spinner.set_color(color); |
| 393 | } |
| 394 | |
| 395 | pub fn handle_key(&mut self, key: crossterm::event::KeyEvent) -> bool { |
| 396 | use crossterm::event::{KeyCode, KeyModifiers}; |
no test coverage detected