How do I use them?

import 'package:splash_screens/splash_screens.dart';

return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: showSplashScreen(
            () => {} // Navigate to home page
        ),
      ),
    );