asset.rsx 412 B

123456789101112
  1. rsx! {
  2. div { "hi" }
  3. img {
  4. // note: the line breaking here is weird but it's because of prettyplease, not dioxus-autofmt
  5. // we might want to fix this in the future
  6. src: asset!(
  7. "/assets/logo.png".image().size(512, 512).format(ImageType::Jpg).url_encoded()
  8. .image().size(512, 512).format(ImageType::Jpg).url_encoded()
  9. ),
  10. alt: "logo",
  11. }
  12. }