files moved to src folder

added flutter_hooks support with example
This commit is contained in:
Kingkor Roy Tirtho
2022-06-22 13:46:40 +06:00
parent e0c70d153f
commit 8c53f1b0fe
20 changed files with 319 additions and 30 deletions
+27
View File
@@ -0,0 +1,27 @@
import 'package:example/main.dart';
import 'package:flutter/material.dart';
import 'package:fl_query/fl_query_hooks.dart';
import 'package:flutter_hooks/flutter_hooks.dart';
class HookExample extends HookWidget {
const HookExample({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
final query = useQuery(job: successJob, externalData: null);
return Scaffold(
appBar: AppBar(
title: const Text("Running the 1st example but with hooks instead"),
),
body: !query.hasData || query.isLoading || query.isRefetching
? const CircularProgressIndicator()
: TextButton(
child: Text(query.data!),
onPressed: () async {
await query.refetch();
},
),
);
}
}