Skip to content

Instantly share code, notes, and snippets.

@JosephineAkello
Last active May 30, 2024 10:43
Show Gist options
  • Save JosephineAkello/1b854a0813d8dfe57a0f604866dfd274 to your computer and use it in GitHub Desktop.
Save JosephineAkello/1b854a0813d8dfe57a0f604866dfd274 to your computer and use it in GitHub Desktop.
empty 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