AppLoader constructor

const AppLoader({
  1. Key? key,
  2. double size = 50,
  3. Color color = Colors.blue,
  4. bool fullScreen = false,
  5. Color? backgroundColor,
  6. LoaderType loaderType = LoaderType.spinningLines,
})

Creates a new AppLoader.

Implementation

const AppLoader({
  super.key,
  this.size = 50,
  this.color = Colors.blue,
  this.fullScreen = false,
  this.backgroundColor,
  this.loaderType = LoaderType.spinningLines,
});