fquery icon indicating copy to clipboard operation
fquery copied to clipboard

⚡fquery is a powerful async state management solution for flutter. It caches, updates and fully manages asynchronous data in your flutter apps.

Results 7 fquery issues
Sort by recently updated
recently updated
newest added

How i can store the cache in an custom storage like secure_storage or something persistent? Like: https://tanstack.com/query/latest/docs/framework/react/plugins/persistQueryClient

enhancement

Hi, I am facing a problem with widget tests. If the widget I am testing has a `UseQueryResult`, the test fails because of a pending timer. Here is the stack...

Version: v1.5.0-beta.1 When I only want to fetch data once, I set it like this ```dart void main() { runApp(QueryClientProvider( queryClient: QueryClient( defaultQueryOptions: DefaultQueryOptions( cacheDuration: const Duration(minutes: 20), refetchInterval: const...

Query function `searchCustomers` is being called twice when name changes once. After the first call becomes success another call is made for the same `name`. Is there anything wrong I'm...

I ran the following code and logged the query result ```dart import 'package:dio/dio.dart'; import 'package:flutter/material.dart'; import 'package:flutter_hooks/flutter_hooks.dart'; import 'package:fquery/fquery.dart'; import 'models/post_model.dart'; Future getPosts() async { final res = await Dio().get('https://jsonplaceholder.typicode.com/posts?_limit=3');...

### 🚨 Regression: `setState() called when widget tree was locked` when unmounting screens using `useQuery` (only happens in `3.0.1`) #### **Description** After updating from **`fquery: 3.0.0`** to **`3.0.1`**, navigating between...

bug
p:fquery

Hi, thanks for developing great package. I wonder if there's any documents or example about testing. I could not image the best way to write tests.