Skip to content

Instantly share code, notes, and snippets.

@iapicca
Last active October 30, 2022 08:12
Show Gist options
  • Select an option

  • Save iapicca/da0128d9708f0dc504de9c2a7c22e59f to your computer and use it in GitHub Desktop.

Select an option

Save iapicca/da0128d9708f0dc504de9c2a7c22e59f to your computer and use it in GitHub Desktop.
webp and gif test
import 'package:flutter/material.dart';
const webp = 'https://im3.ezgif.com/tmp/ezgif-3-08c57e6f54.webp';
const gif = 'https://roszkowski.dev/images/2020-05-04/flutter_logo_leg.gif';
void main() => runApp(
MaterialApp(
home: Scaffold(
body: Column(
children: const [
Image(image: NetworkImage(gif)),
Image(image: NetworkImage(webp))
],
),
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment