2)Forgot Password api Integrate 3)Change Password api Integrate and ChangePassword UI Create
20 lines
406 B
Dart
20 lines
406 B
Dart
import 'package:cheminova/screens/splash_screen.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
void main()async{
|
|
runApp(const MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const GetMaterialApp(
|
|
debugShowCheckedModeBanner: false,
|
|
home: SplashScreen(),
|
|
);
|
|
}
|
|
}
|