getInitialScreen method

Widget getInitialScreen(
  1. BuildContext context
)

This will be the first Widget the user will see, tipically a splash screen. Use it to do some background work like refreshing an access token or remotely fetch the schema file. When all animations and backgroung work is done, just pop it and Lowder will load the solution and render the landing screen.

Implementation

Widget getInitialScreen(BuildContext context) => const LowderSplashScreen();