Generate progressbars in bevy ui from simple values. The progressbars can have multiple sections.
rust
cargo add bevy-progressbar
See examples for better understanding
```rust
fn setup(mut commands: Commands, mut images: ResMut
ProgressBarBundle::new(10_000, 1000, 100, &mut images)
.add_section(1000, Color::RED)
.add_section(2000, Color::BLUE)
.add_section(4000, Color::GREEN),
);
} ```