This commit is contained in:
J. A. Messias 2024-11-12 14:39:45 -03:00
parent c8ef889273
commit b010582fbe
1 changed files with 2 additions and 1 deletions

View File

@ -119,6 +119,8 @@ class PetsPageModel extends FlutterFlowModel<PetsPageWidget> {
@override
void initState(BuildContext context) {
initAsync();
tabBarController = TabController(
vsync: Navigator.of(context),
length: 2,
@ -143,7 +145,6 @@ class PetsPageModel extends FlutterFlowModel<PetsPageWidget> {
textControllerObservation = TextEditingController();
WidgetsBinding.instance.addPostFrameCallback((_) async {
await initAsync();
devUUID = await StorageHelper().get(SQLiteStorageKey.devUUID.value, Storage.SQLiteStorage) ?? '';
userUUID = await StorageHelper().get(SQLiteStorageKey.userUUID.value, Storage.SQLiteStorage) ?? '';
cliUUID = await StorageHelper().get(SQLiteStorageKey.clientUUID.value, Storage.SQLiteStorage) ?? '';