splashscreen
一個為任何 Flutter 應用程式設計的啟動畫面套件,可輕鬆建立並具有大量自訂選項
一個小型啟動畫面,可輕鬆為 Flutter 應用程式添加介紹,具有大量自訂選項 ❤️🥳
{"sdk":"flutter"}以下為英文專案原文快照,最新內容請造訪 GitHub。
image (alt)
screenshot description (alt)
To use this package :
dependencies:
flutter:
sdk: flutter
splashscreen:
new SplashScreen.timer(
seconds: 14,
navigateAfterSeconds: new AfterSplash(),
title: new Text('Welcome In SplashScreen'),
image: new Image.asset('screenshot.png'),
backgroundColor: Colors.white,
styleTextUnderTheLoader: new TextStyle(),
photoSize: 100.0,
loaderColor: Colors.red
);
As time based...
import 'package:flutter/material.dart';
import 'package:splashscreen/splashscreen.dart';
void main() {
runApp(MaterialApp(home: MyApp()));
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return SplashScreen.timer(
seconds: 14,
navigateAfterSeconds: AfterSplash(),
title: Text(
'Welcome In SplashScreen',
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 20.0),
),
image: Image.network(
'https://flutter.io/images/catalog-widget-placeholder.png',
),
backgroundColor: Colors.white,
loaderColor: Colors.red,
);
}
}
class AfterSplash extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Welcome In SplashScreen Package'),
automaticallyImplyLeading: false,
),
body: Center(
child: Text(
'Succeeded!',
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 30.0),
),
),
);
}
}
As future based...
import 'package:flutter/material.dart';
import 'package:splashscreen/splashscreen.dart';
void main() {
runApp(MaterialApp(home: MyApp()));
}
Future<Widget> loadFromFuture() async {
// <fetch data from server. ex. login>
return AfterSplash();
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return SplashScreen.future(
navigateAfterFuture: loadFromFuture(),
navigateAfterSeconds: AfterSplash(),
title: Text(
'Welcome In SplashScreen',
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 20.0),
),
image: Image.network(
'https://flutter.io/images/catalog-widget-placeholder.png',
),
backgroundColor: Colors.white,
loaderColor: Colors.red,
);
}
}
class AfterSplash extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Welcome In SplashScreen Package'),
automaticallyImplyLeading: false,
),
body: Center(
child: Text(
'Succeeded!',
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 30.0),
),
),
);
}
}
The main image has this tag attached to it splashscreenImage. Add it to whatever page you'll navigate to. This will animate the main Image to the same image you put in another page
You can use the pageRoute to do just this. Here's an example
import 'package:flutter/material.dart';
import 'package:splashscreen/splashscreen.dart';
void main() {
runApp(MaterialApp(home: MyApp()));
}
Route _createRoute() {
return PageRouteBuilder(
pageBuilder: (context, animation, secondaryAnimation) => AfterSplash(),
transitionsBuilder: (context, animation, secondaryAnimation, child) {
var begin = Offset(0.0, 1.0);
var end = Offset.zero;
var curve = Curves.ease;
var tween = Tween(begin: begin, end: end).chain(CurveTween(curve: curve));
return SlideTransition(
position: animation.drive(tween),
child: child,
);
},
);
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return SplashScreen.timer(
seconds: 14,
navigateAfterSeconds: AfterSplash(),
title: Text(
'Welcome In SplashScreen',
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 20.0),
),
image: Image.network(
'https://flutter.io/images/catalog-widget-placeholder.png',
),
backgroundColor: Colors.white,
loaderColor: Colors.red,
pageRoute: _createRoute(),
);
}
}
class AfterSplash extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Welcome In SplashScreen Package'),
automaticallyImplyLeading: false,
),
body: Center(
child: Text(
'Succeeded!',
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 30.0),
),
),
);
}
}
Splash Screen - Flutter
a flutter package created to show simple splashscreen
In App Call Alert - Flutter
a flutter package created to show call alert with sound
File Manager
a php project created to manage machines/servers through ftp servers
Countries Js
a javascript project created for retrieving country details with flexibility.
Block temp mails
a javascript api to prevent temporary emails from signing up on your website. Super easy to use
Disposable Emails List
a python script to generate the temporary and spam doamins to prevent them and you can block them through this API Block temp mails
Basic CRM
A crm that is developed with Node Js for entreprenurs who need a basic CRM with text replacment feature
Basic Finance
A finance that is developed with Node Js
DPLYR is a SaaS tool that helps developers just like you to deploy their web apps more easily. It supports deploying Node.js apps with MongoDB, MySQL or PostgreSQL databases all for free. Go now to www.dplyr.dev and create a free account.