bevy_mod_ui_sprite
Draw sprites, texture atlas sprites, and colored rectangles with the Bevy UI.

Usage
Add the dependency to Cargo.toml:
= "0.2.1"
Add the plugin to your app:
use *;
Don't forget a camera:
commands.spawn_bundle;
Then you can spawn a UiSpriteBundle:
commands.spawn_bundle;
Full Example
cargo --run --example example
Notes
Performance should be fine, but this crate is not a substitute for the much more efficient Bevy 2D renderer.