Skip to content

Instantly share code, notes, and snippets.

@JosephineAkello
Created May 30, 2024 10:33
Show Gist options
  • Save JosephineAkello/54a13bd2d46d666b689997af3932c3cd to your computer and use it in GitHub Desktop.
Save JosephineAkello/54a13bd2d46d666b689997af3932c3cd to your computer and use it in GitHub Desktop.
Empty demo splash screen
import 'package:flutter/material.dart';
import 'package:lottie/lottie.dart';
class SplashScreen extends StatelessWidget {
const SplashScreen({super.key});
@override
Widget build(BuildContext context) {
return Center(
// we will add Lottie animations here
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment