Skip to content

kdheepak/ratatui-statusbar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ratatui-statusbar

ratatui-statusbar is a status bar library for Ratatui crate for Rust.

Getting Started

To get started, first add it to your Cargo.toml dependencies:

cargo add ratatui-statusbar

Creating a new status bar is simple. Here's a quick example:

use ratatui_statusbar::StatusBar;

let status_bar = StatusBar::new(3)
    .section(0, "Left content")?;
    .section(1, "Center content")?;
    .section(2, "Right content")?;

Contributing

Please feel free to fork the repository, make your changes, and submit a pull request.

License

See LICENSE for details.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages