fix : splash animation
feat : auth with password chore : app Architecture
This commit is contained in:
15
lib/presentation/pages/auth/auth_with_otp/view.dart
Normal file
15
lib/presentation/pages/auth/auth_with_otp/view.dart
Normal file
@@ -0,0 +1,15 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:get/get.dart';
|
||||
|
||||
import 'logic.dart';
|
||||
|
||||
class AuthWithOtpPage extends StatelessWidget {
|
||||
const AuthWithOtpPage({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final AuthWithOtpLogic logic = Get.put(AuthWithOtpLogic());
|
||||
|
||||
return Container();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user