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
+1 -1
View File
@@ -1,4 +1,4 @@
import 'package:fl_query/query_bowl.dart';
import 'package:fl_query/fl_query.dart';
import 'package:flutter/material.dart';
class AnotherComponent extends StatelessWidget {
+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();
},
),
);
}
}
+11
View File
@@ -1,6 +1,7 @@
import 'dart:math';
import 'package:example/another_component.dart';
import 'package:example/hooks_example.dart';
import 'package:example/lazy_query.dart';
import 'package:example/mutation_example.dart';
import 'package:example/query_with_external_data.dart';
@@ -167,6 +168,16 @@ class _MyHomePageState extends State<MyHomePage> with WidgetsBindingObserver {
);
},
),
ElevatedButton(
child: const Text("flutter_hooks Example"),
onPressed: () {
Navigator.of(context).push(
MaterialPageRoute(
builder: (context) => const HookExample(),
),
);
},
),
const AnotherComponent(),
],
),