spotatui 0.36.1

A Spotify client for the terminal written in Rust, powered by Ratatui
1
2
3
4
5
6
7
8
9
10
11
12
use super::super::app::App;
use crate::event::Key;

pub fn handler(key: Key, app: &mut App) {
  match key {
    Key::Enter | Key::Esc | Key::Char('q') | Key::Char(' ') => {
      app.update_prompt_acknowledged = true;
      app.pop_navigation_stack();
    }
    _ => {}
  }
}