feat(app): Вынести инициализацию приложения за splash (#4)

Co-authored-by: PetrovY <y.petrov@friflex.com>
This commit is contained in:
Yuri Petrov
2025-02-12 10:53:38 +03:00
committed by GitHub
parent 0a7452e1eb
commit af3b941711
18 changed files with 503 additions and 155 deletions

View File

@@ -0,0 +1,19 @@
{
"imports": [
"import 'package:flutter/widgets.dart';"
],
"classStructure": [
"/// {@template {className}}",
"/// ",
"/// {@endtemplate}",
"class {className} extends StatelessWidget {",
" /// {@macro {className}}",
" const {className}({super.key});",
" ",
" @override",
" Widget build(BuildContext context) {",
" return const Placeholder();",
" }",
"}"
]
}