This commit is contained in:
Patrick Alvin Alcala 2025-02-28 14:08:05 +08:00
parent 27f00e43a7
commit 3572f90b24
24 changed files with 290 additions and 257 deletions

View file

@ -0,0 +1,10 @@
import 'package:flutter/widgets.dart';
Future<bool> checkExisting(dynamic table, TextEditingController controller) async {
try {
final uuid = await table.getUUID(controller.text);
return uuid.isNotEmpty;
} catch (e) {
return false;
}
}