createSplash function

void createSplash({
  1. required String? path,
  2. required String? flavor,
})

Create splash screens for Android and iOS

Implementation

void createSplash({
  required String? path,
  required String? flavor,
}) {
  if (flavor != null) {
    print(
      '''
╔════════════════════════════════════════════════════════════════════════════╗
║                             Setting up flavors!                            ║
╚════════════════════════════════════════════════════════════════════════════╝
===> Setting up the $flavor flavor.
''',
    );
  }

  final config = getConfig(configFile: path, flavor: flavor);
  _createSplashByConfig(config);
}