Closed mhsampaio closed 4 years ago
same question here...
Sorry for everyone stayed longtime with issues I was busy but now I will work on it until i fix all issues and publish a new release thx for anyone.
This has been answered #19, you can use backgroundImage property
@mhsampaio, this is my solution: And result:
class _WelcomePageState extends State {
@override
Widget build(BuildContext context) {
return SplashScreen(
seconds: 25,
navigateAfterSeconds: HomePage(),
title: Text('Ace Squad',
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 30.0
),),
image: Image.asset("images/skull.png",
height: 250.0,
width: 250.0
),
imageBackground: ,
//backgroundColor: Colors.black,
styleTextUnderTheLoader: TextStyle(),
photoSize: 100.0,
onClick: ()=>print("Flutter Egypt"),
loaderColor: Colors.white
); } }