Splash screen is a custom Fuse service that allows to have a control on the splash screen.
Splash screen
export class SomeComponent implements OnInit { constructor( private _fuseSplashScreenService: FuseSplashScreenService ) {} ngOnInit() { this._fuseSplashScreenService.show(); setTimeout(() => { this._fuseSplashScreenService.hide(); }, 3000); } }