splashy 2.0.1 copy "splashy: ^2.0.1" to clipboard
splashy: ^2.0.1 copied to clipboard

outdated

Splash Screen is the first visual users see when an application is launched.

Animated Flat Camera Icon by Kushagra Agarwal Animated Flat Camera Icon by Kushagra Agarwal


Pub Star on GitHub style: effective dart Flutter Website Awesome Flutter Flutter Samples License: MIT


Splash Screen is the first visual users see when an application is launched.

One might wonder what is ‘splashy’ about Splash Screen. Frankly, very little! Its chief purpose is to engage users while the app loads. And in order to do that, it may feel like a of splash of visuals virtually thrown them.

package inspired from Splash Screen: Designing a Successful Launch Experience for Your Mobile App of Maitrik Kataria

📦 Splashy is a fork of animated_splash

Using the package #

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

void main(){

    Future<Widget> customFunction(){
        print("Background process");
        return Future.value(HomPage())
    }

    runApp(MaterialApp(
        home: Splashy(
            imagePath: "assets/flutter_icon.png",
            curve : Curves.easeInOut,
            backgroundColor : Colors.blue,
            customFunction: customFunction(),
        )
    ));
}


class HomePage extends StatefulWidget {
  @override
  _HomePageState createState() => _HomePageState();
}

class _HomeState extends State<HomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text("Splashy"),
      ),
      body: Center(child: Text("Hello World"),),
    );
  }
}

maintainer #


8
likes
0
pub points
22%
popularity

Publisher

unverified uploader

Splash Screen is the first visual users see when an application is launched.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on splashy