dioxus/examples/custom_assets.rs
2024-01-20 00:11:55 -08:00

20 lines
448 B
Rust

use dioxus::prelude::*;
#[cfg(not(feature = "collect-assets"))]
static ASSET_PATH: &str = "examples/assets/logo.png";
#[cfg(feature = "collect-assets")]
static ASSET_PATH: &str = manganis::mg!(image("examples/assets/logo.png").format(ImageType::Avif));
fn main() {
launch(app);
}
fn app() -> Element {
rsx! {
div {
p { "This should show an image:" }
img { src: ASSET_PATH.to_string() }
}
}
}