JaviCore
JaviCore
It's a bit different. The video shows how to relate two fields when doing the validation for one. If A == X then B is required kind of thing. What...
Fair enough. Something like an optional validation parameter value or a FormBuilderValidator.optional, similar to the required one could be useful.
Hi, any updates regarding this issue? Didn't even know about the store change since said breaking changes haven't reflected in my area till like yesterday/today
Same problem here on iOS. FCM is working fine but the badge is no updating at all.
I'm still debugging stuff right now but it seems to be due to onBackgroundMessage simply not triggering for me no matter what so there's no way for the badge to...
Same issue here with 2.3.3 (can't use 3.0 due to not supporting flutter 2.0 in the current app) and not using Get. Need to actually hot reload the app for...
Just posting again to say that this actually works: https://stackoverflow.com/questions/43778488/how-to-force-flutter-to-rebuild-redraw-all-widgets ``` @override Widget build(BuildContext context) { rebuildAllChildren(context); return MaterialApp( .... } void rebuildAllChildren(BuildContext context) { void rebuild(Element el) { el.markNeedsBuild();...