splash_view 1.0.0 copy "splash_view: ^1.0.0" to clipboard
splash_view: ^1.0.0 copied to clipboard

A splash view shows up when an application is loading.

example/example.md

import 'package:flutter/material.dart';
import 'package:splash_view/splash_view.dart';

void main() {
  runApp(
    const MaterialApp(
      debugShowCheckedModeBanner: false,
      home: SplashView(
        image: FlutterLogo(),
        title: "Dart Splash View",
        home: Home(),
      ),
    ),
  );
}

class Home extends StatelessWidget {
  const Home({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Container(),
    );
  }
}
71
likes
150
pub points
89%
popularity

Publisher

verified publisherrahulchouhan.me

A splash view shows up when an application is loading.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on splash_view