Andrea Bizzotto
Andrea Bizzotto
@kmyiu7 Have you tried wrapping each TextField inside a custom `StatefulWidget` and giving it a global key? See this video for more info on working with keys: https://www.youtube.com/watch?v=kn0EOS-ZiIc
I just bumped into this issue on my GitHub Actions workflow. Here's an extract of my build log: ``` Tip: make your patches build faster by specifying --release-version ⠋ Building...
@ionLuca23 thank you for the suggestion, could you open a PR for this?
Author and maintainer here. This project has not been maintained for 5+ years (and no further work is planned). I recommend migrating to the new StoreKit APIs or supported 3rd...
I did a bit of debugging and found out that this getter returns true because my `statusCode` is `null`: ```dart bool get isBroken => statusCode != 200 && !wasDeniedByRobotsTxt &&...