18 lines
536 B
Dart
18 lines
536 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:animated_splash_screen/animated_splash_screen.dart';
|
|
import '../login/login_page.dart'; // Import your LoginPage
|
|
|
|
class SplashScreen extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
debugShowCheckedModeBanner: false,
|
|
home: AnimatedSplashScreen(
|
|
splash: Image.asset('assets/images/logo_2.png'),
|
|
nextScreen: LoginPage(),
|
|
splashTransition: SplashTransition.fadeTransition,
|
|
),
|
|
);
|
|
}
|
|
}
|