Here is the .gif in question

import 'package:flutter/material.dart';
class Loading extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Center(
child: CircleAvatar(
backgroundColor: Colors.white30,
radius: 48,
backgroundImage: AssetImage("assets/gargron.gif"),
),
);
}
}
How it renders:
