16 lines
344 B
Dart
16 lines
344 B
Dart
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();
|
|
}
|
|
}
|