Bruno D'Luka

Results 236 comments of Bruno D'Luka

Seems related to https://github.com/supabase/gotrue/issues/214

It may be the case that the function is being called too many times and the server is denying the request after a few times. Can you try the following...

Maybe a debounce timer should be added to check if the channels are still active?

@dshukertjr could custom headers be added to rpc as well?

Duplicate of https://github.com/supabase-community/supabase-flutter/issues/179

Maybe you're looking for `withConverter`. ```dart final User user = await postgrest .from('users') .select() .withConverter((data) => User.fromJson(data)); ```

> is the data variable json? `data` is the result given from the server. It can be either a `Map` or a `List`, depending on your query > Do you...

> It would still be helpful if it were more type safe of course and the models were generated from the db automatically @dshukertjr we could create a tool that...

@rutvik110 Yes! And, in addition to this feature, it would be nice to have a way to define a start and end point for the waveform. This would be useful...

The output would look like this: ![One waveform highlighted, other ofuscated](https://github.com/rutvik110/flutter_audio_waveforms/assets/45696119/f85edd71-6d24-49bb-a51b-ab35e8718328) Currently, we need to make use of a `Stack` and a `CustomClipper` to render two waveforms on top of...