LoadingScreenConfig constructor

const LoadingScreenConfig({
  1. Color backgroundColor = Colors.white,
  2. Color progressColor = const Color(0xFFDA291C),
  3. Color textColor = const Color(0xFF1E1E1E),
  4. String loadingText = 'Processing...',
  5. double logoSize = 40.0,
  6. TextStyle? textStyle,
  7. Widget? logoWidget,
  8. double progressIndicatorSize = 60.0,
})

Implementation

const LoadingScreenConfig({
  this.backgroundColor = Colors.white,
  this.progressColor = const Color(0xFFDA291C), // Man Utd Red
  this.textColor = const Color(0xFF1E1E1E),
  this.loadingText = 'Processing...',
  this.logoSize = 40.0,
  this.textStyle,
  this.logoWidget,
  this.progressIndicatorSize = 60.0,
});