This commit is contained in:
Juan Felipe Duarte
2023-04-04 09:18:33 -05:00
parent 9656a85090
commit 50737e03dd
7 changed files with 304 additions and 155 deletions
@@ -0,0 +1,13 @@
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:prosappco/src/authentication/authentication_repository.dart';
class NewPhoneController extends GetxController {
static NewPhoneController get instance => Get.find();
final newPhoneNo = TextEditingController();
void phoneAuthentication(String newPhoneNo) {
AuthenticationRepository.instance.phoneAuthentication(newPhoneNo);
}
}