Sergio Molchanovsky
Sergio Molchanovsky
Плюсую, при разрешении 4к очень мелкое окошко. Сделайте UI upscale 2x, 4x
I don't understand why did you choose a json as an example. I may imagine the following syntax: ```dart authRepository.login(userId, class implements IResultHandler { @override void onError(String error) { showToast(context,...
I'm still sitting on a flutter_inappwebview 5.8, and we managed to remove this R8 error by adding the following line in the beginning of the `android/build.gradle` script: ```groovy project.gradle.startParameter.excludedTaskNames.add(":flutter_inappwebview:minifyReleaseWithR8") ```...
Same here: SVG icon: ```xml ``` not rendered. The same SVG without style tags: ```xml ``` rendered correctly.
Hi @christian-hawk , i'm doing a research on a same task. In short - no, this plugin is not suitable, it can keep the data within one app only. The...
@christian-hawk, SSO is implemented on backend. On mobile app side, you just have to keep all your accounts in some shared zone, like AccountManager (not sure about Keystore, and if...
Okay, I see, by default, FetchPolicy is NetworkOnly, and optimistic data is used instead of cache. But how would it behave, if I set FetchPolicy to CacheAndNetwork? > The Cache...
> so that all listeners are updated with the optimistic response. So, the optimistic response overrides an existing cached data? That's very non-obvious. I thought that priorities are: `optimistic <...
> Also, the optimistic response usually should only be available for a short time, since it's removed when the server responds. What if network response failed? Will the optimistic data...