# Tui-cards A simple library to render playing cards in a terminal using tui-rs. ## Example ```rust use tui_cards::{Card, Rank, Suit}; let card = Card::new(Rank::Ace, Suit::Spades); frame.render_widget(&card, area); ``` ## Demo ```shell cargo run --example card ``` ![demo](https://github.com/user-attachments/assets/a415581b-1d04-4aaf-a7f5-8f3427f11756) ## TODO - [ ] work out bug with background of cell after the suit character - [ ] more configuration options ## License Copyright (c) Josh McKinney This project is licensed under either of: - Apache License, Version 2.0 ([LICENSE-APACHE] or ) - MIT license ([LICENSE-MIT] or ) at your option. [LICENSE-APACHE]: /LICENSE-APACHE [LICENSE-MIT]: /LICENSE-MIT ## Contribution Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions. See [CONTRIBUTING.md](/CONTRIBUTING.md).