This commit is contained in:
Felipe
2024-02-16 14:29:17 -05:00
parent 1b565d70f4
commit 159ffedc6e
2 changed files with 25 additions and 3 deletions
+23
View File
@@ -0,0 +1,23 @@
import 'package:flutter/material.dart';
class SplashScreen extends StatelessWidget {
const SplashScreen({Key? key});
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Image.asset(
'images/splash.png',
width: 600,
height: 600,
),
],
),
),
);
}
}