Mosc

Results 51 comments of Mosc

Yes, but it's bit low on my priority list, and with limited time available I haven't got around to restructuring the PR yet. I would not mind if you or...

Wouldn't mind implementing this, but it turns out it's not that easy to do using Flutter. See the open issue [here](https://github.com/flutter/flutter/issues/48381). Some possible solutions are discussed [on StackOverflow](https://stackoverflow.com/questions/51913485/how-to-use-the-devices-default-font-in-flutter) but I...

There's two reasons I haven't released on the App Store yet: - My main development machine is not a Mac, which makes proper testing tricky. - Apple's annual fee is...

I like it. I've experienced the same difficulty following a long discussion, and this seems like an elegant solution.

Implemented in da3b4b6ce7cf8bd328ea3f8c1dd45f1bfe01eba6 and should be part of the next release. I've chosen the option where one parent is shown in the dialog and the user can manually continue navigating...

Yup, would be nice. Can you tell me a bit more about your use case? Do you think the app should just cache the responses of all the pages you've...

Offline functionality has been implemented in db8f65d72a91658fe96fdeb126f0a0da68990669 and 1260819c99f9122dd3b58609acbd1e237ac75a00. The app will cache every successful HTTP GET request during normal use for a period of 7 days. When any HTTP...

Non-trivial for Flutter apps because native code is required to display widgets on the home screen, while accessing data from the Flutter side. [home_widget](https://pub.dev/packages/home_widget) can assist with this. A bit...

Yeah, a CAPTCHA would certainly cause the login to fail. It's likely that the CAPTCHA was shown precisely because it was preceded by several failed requests with your old password....

This is a weird limitation in the Flutter framework: https://github.com/flutter/flutter/issues/26359. Preferably system proxies would work by default, but external packages do exist to address this.