mirror of
https://github.com/flame-engine/flame.git
synced 2025-11-16 04:38:42 +08:00
16 lines
555 B
Markdown
16 lines
555 B
Markdown
## Splash screen
|
|
|
|

|
|
|
|
Style your flame game with a beautiful splash screen.
|
|
|
|
FlameSplashScreen is a very customizable splash screen package.
|
|
|
|
```dart
|
|
FlameSplashScreen(
|
|
theme: FlameSplashTheme.dark,
|
|
onFinish: (BuildContext context) => Navigator.pushNamed(context, '/your-game-initial-screen')
|
|
)
|
|
```
|
|
|
|
Check the [package's repo](https://github.com/flame-engine/flame_splash_screen) and the [pub page](https://pub.dev/packages/flame_splash_screen) for more details. |