animated_splash_plus 1.0.1
animated_splash_plus: ^1.0.1 copied to clipboard
A highly customizable animated splash screen package for Flutter with beautiful sunset effects and text animations.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:animated_splash_plus/animated_splash_plus.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
home: AnimatedSplashPlus(
firstText: 'Business',
secondText: 'Manager',
subtitle: 'Your Business Solution',
welcomeText: 'Loading...',
onComplete: () {
// Navigate to your main app
},
),
);
}
}