Function freya_components::NetworkImage 
source · pub fn NetworkImage(props: NetworkImageProps) -> ElementExpand description
NetworkImage component.
Props
See NetworkImageProps.
Example
fn app() -> Element {
    rsx!(
        NetworkImage {
            url: "https://raw.githubusercontent.com/jigsawpieces/dog-api-images/main/greyhound/Cordelia.jpg".parse().unwrap()
        }
    )
}