19 lines
385 B
Dart
19 lines
385 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:sampleapp/widgets/splash_screen.dart';
|
|
|
|
import '../globals.dart';
|
|
|
|
class SplashPage extends Page {
|
|
const SplashPage();
|
|
|
|
@override
|
|
Route createRoute(BuildContext context) {
|
|
return MaterialPageRoute(
|
|
settings: this,
|
|
builder: (BuildContext context) {
|
|
return const SplashScreen();
|
|
},
|
|
);
|
|
}
|
|
}
|