Skip to content

Instantly share code, notes, and snippets.

@JosephineAkello
Created May 30, 2024 10:06
Show Gist options
  • Save JosephineAkello/9ebccb90205dcc0b5700a54877dc393a to your computer and use it in GitHub Desktop.
Save JosephineAkello/9ebccb90205dcc0b5700a54877dc393a to your computer and use it in GitHub Desktop.
Splash screen demo with Lottie anim from remote Network URL
Widget build(BuildContext context) {
return Center(
// Adding a Lottie animation via Network URL
child: Lottie.network(
"https://lottie.host/bf81e742-c5ab-4a9d-82b3-826d17556baa/U5Qsu9gaZM.json",
fit: BoxFit.cover,
width: 300,
height: 300,
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment