FlutterLoadingScreen constructor
const
FlutterLoadingScreen({
- Key? key,
- required Function futureTask,
- required NextPageParam nextPageParam,
- Color? loaderColor,
- String? title,
- TextStyle? titleStyle,
- Image? image,
- Widget? titleWidget,
- Color? backgroundColor = Colors.white,
- TextStyle? styleTextUnderTheLoader = const TextStyle(fontSize: 18.0, fontWeight: FontWeight.bold, color: Colors.black),
- String? loadingMessage,
Constructor for the LoadingScreen widget with all the required initializers
Implementation
const FlutterLoadingScreen({
super.key,
required this.futureTask,
required this.nextPageParam,
this.loaderColor,
this.title,
this.titleStyle,
this.image,
this.titleWidget,
this.backgroundColor = Colors.white,
this.styleTextUnderTheLoader = const TextStyle(fontSize: 18.0, fontWeight: FontWeight.bold, color: Colors.black),
this.loadingMessage,
});