This commit is contained in:
J. A. Messias 2025-01-28 08:59:00 -03:00
parent f33081a773
commit e5bd18dec6
1 changed files with 0 additions and 9 deletions

View File

@ -25,15 +25,6 @@ class _HomePageWidgetState extends State<HomePageWidget> with WidgetsBindingObse
super.initState();
WidgetsBinding.instance.addObserver(this);
WidgetsBinding.instance.addPostFrameCallback((_) async {
final email = await StorageHelper().get(SecureStorageKey.email.value);
final pass = await StorageHelper().get(SecureStorageKey.password.value);
final cli = await StorageHelper().get(ProfileStorageKey.clientUUID.key);
final owner = await StorageHelper().get(ProfileStorageKey.ownerUUID.key);
print('Email: $email');
print('Password: $pass');
print('Client: $cli');
print('Owner: $owner');
await LocalsRepositoryImpl().check(context);
if (widget.update != null) {
await widget.update!(context);