1234567891011121314151617181920 |
- 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() }
- }
- }
- }
|