simple_splash_view 0.1.13
simple_splash_view: ^0.1.13 copied to clipboard
Native splash generator (Android/iOS) with Kotlin/Swift using config from pubspec.yaml.
example/lib/main.dart
import 'package:flutter/material.dart';
void main() {
runApp(const MaterialApp(
debugShowCheckedModeBanner: false,
home: DemoHome(),
));
}
class DemoHome extends StatelessWidget {
const DemoHome({super.key});
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Center(child: Text('Run: flutter pub run simple_splash_view')),
);
}
}