mirror of
https://github.com/smmarty/friflex_flutter_starter.git
synced 2025-12-22 17:40:45 +00:00
17 lines
459 B
Dart
17 lines
459 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter/widgets.dart';
|
|
import 'package:friflex_starter/gen/assets.gen.dart';
|
|
|
|
/// {@template SplashScreen}
|
|
/// Экран загрузки приложения.
|
|
/// {@endtemplate}
|
|
class SplashScreen extends StatelessWidget {
|
|
/// {@macro SplashScreen}
|
|
const SplashScreen({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Center(child: Assets.lottie.splash.lottie());
|
|
}
|
|
}
|