Petr Kubeš
Petr Kubeš
Hi, this is a cleaned up version of the code changes by @cipsys from https://github.com/cph-cachet/flutter-plugins/pull/811. Is there anything else that needs to be done to get this merged?
Quite minor issue. When card has a shadow, the initial shadow is darker than it should. It's visible in the video from the other issue: https://github.com/AnupKumarPanwar/swipe_cards/issues/13 Notice how the shadow...
This code does not work as expected: ``` final someParams = [...] someMutation.mutate(someParams); someParams.clear(); ``` this one does: ``` final someParams = [...] await someMutation.mutate(someParams); someParams.clear(); ``` I'd say it's...
For my project, this would be more useful than refetchQueries, as I don't want to be loading too much stuff in the background.
Would be nice to this variable, as I've found myself using `isLoading || isRefreshing` multiple times. TanStack query does have it.
I've noticed that when setting up the library according to the tutorial here https://fl-query.krtirtho.dev/docs/getting-started/overview the `MyApp build` functions runs twice after hot reload & restart, which creates two QueryClients, which...
# To Reproduce Steps to reproduce the behavior: I am running ``` transcripts = YouTubeTranscriptApi.list_transcripts(video_url) transcript = transcripts.find_transcript(language_codes=[desired_language]) if transcript is None: return 'no transcript was found', 400 downloaded =...
First of all, thanks for the plugin! However, I'm having some trouble with "go to definition" functionality for methods. It's just shows the intellij loader and nothing happens. OS: MacOS...
I've found a bug that occurs when you change cards in the match engine, sometime the front card would not render. The fix: in `swipe_cards` build method: ``` DraggableCard( key:...
This might be a little more niche feature idea, but my use-case is this: 1) I have the English localization of the app 2) I've generated a Czech localization (my...