Jonny1987

Results 31 comments of Jonny1987

Any update on this? I will need to find a workaround if not which will probably involve rethrowing a custom error in every place that I use superbase database functions...

I've spent hours looking at the `SupabaseClient` and `PostgrestBuilder` code an I can't see a way to do it other than just doing the following where the supabase function is...

Actually, maybe the following method can be added to `PostgrestFilterBuilder` and `PostgrestQueryBuilder`? ``` Future end() { return this.catchError((error) => throw error); } ``` Then in the app code, the developer...

My solution is to create the following file in my own code and import that into files where I do supabase db operations and then append `.end()` to them as...

I did this by adding a 1 min disabled interval. I also forked this repo to block the sliders from passing through the disabled interval: https://github.com/Jonny1987/flutter_time_range_picker

I have created a fork of this repo to fix this issue: https://github.com/Jonny1987/flutter_time_range_picker

I realise this error is because `shorebird preview` simply uses the default debug keystore and I was expecting it to use the release keystore. Also, my app was not working...

So I checked the certificate of the aab file and it WAS the correct (release) one. But the preview command was still using debug.keystore according to it's logs. It looks...

Here is the main.dart file for a minimal app which shows this problem. The issue also occurs on a non styled map but not in as many places. The styled...