quvyta-framework 0.1.2

A Rust framework for building terminal applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! The names almost every application uses: `use qframe::prelude::*;`.

pub use crate::event::{Event, KeyEvent};
pub use crate::geometry::{Padding, Rect, Size};
pub use crate::icons::IconMode;
pub use crate::keymap::Scope;
pub use crate::router::Router;
pub use crate::runtime::{App, Command, Confirm, Harness, Runtime};
pub use crate::t;
pub use crate::widget::{Align, Length, View};
pub use crate::widgets::{AppShell, Button, KeyHints, List, ListItem, Panel, Span, Tabs, Text};