19 lines
361 B
Dart
19 lines
361 B
Dart
import 'package:cheminova/screens/splash_screen.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
void main() {
|
|
runApp(const MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const GetMaterialApp(
|
|
home: SplashScreen(),
|
|
);
|
|
}
|
|
}
|