Alexandru Dochioiu
Alexandru Dochioiu
This issue still seems to exist for almost every single multi-asset transaction. Any plans on fixing it?
@vsubhuman That's not possible. The transaction hex/cbor never gets built. `UTxO Balance Insufficient` is an error thrown when calling `txBuilder.add_inputs_from(txUnspentOutputs, 3)`.
Probably a bit late, but you can change to pop on exit instead of entry ```dart onTap: (index) { tabsRouter.stackRouterOfIndex(tabsRouter.activeIndex)?.popUntilRoot(); tabsRouter.setActiveIndex(index); }, ```
Also, you might want to change order and to `tabsRouter.setActiveIndex(index);` first to make sure you don't see the hidden route popping ```dart onTap: (index) { oldIndex = tabsRouter.activeIndex; tabsRouter.setActiveIndex(index); tabsRouter.stackRouterOfIndex(oldIndex)?.popUntilRoot();...
L.E. For context, the `.also` is a custom extension function to mimic kotlin's `.also` ```dart extension Sugar on T { T also(Function(T data) invoker) { invoker(this); return this; } }...
@juliansteenbakker I am one of the people that started encountering stability issues caused by `EncryptedSharedPreferences` despite running a pre-release beta with only 50 users. That pretty much makes it clear...
Same here. I cannot consider using this before encryption is implemented. Until then I'll stick with Hive and move to alternatives if Hive stops being properly maintained.
Hey @deven98, mind having a look at this? Thanks!
For anyone needing it: I made a fork from main + added the fix from @xSILENCEx (thank you) directly in the library. ```pub modal_bottom_sheet: git: url: https://github.com/vespr-wallet/modal_bottom_sheet.git path: modal_bottom_sheet ref:...
Hmm, I could have easily wrapped it inside a function too: `st() => Stream.fromIterable([0, 1]).asyncMap((_) async => Future.delayed(Duration(seconds: 1), () => _));` which works relatively similar to defer (expect it...