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(); } }