splash_master 1.0.0
splash_master: ^1.0.0 copied to clipboard
Unifying Native and Flutter splash screens with multiple media options for a seamless user experience.
import 'package:flutter/material.dart';
import 'package:splash_master_example/home.dart';
void main() {
WidgetsFlutterBinding.ensureInitialized();
runApp(
const MaterialApp(
debugShowCheckedModeBanner: false,
home: Home(),
),
);
}