Initial Support

This commit is contained in:
Kingkor Roy Tirtho
2022-05-27 12:51:13 +06:00
parent b5a73f8cae
commit 64c852fddc
162 changed files with 4691 additions and 5236 deletions
+17 -2
View File
@@ -1,4 +1,19 @@
library fl_query;
export 'package:fl_query/src/core/core.dart';
// export 'package:fl_query/src/core/framework.dart';
import 'package:flutter/material.dart';
class FlQueryScope extends StatefulWidget {
final Widget child;
const FlQueryScope({required this.child, Key? key}) : super(key: key);
@override
State<FlQueryScope> createState() => _FlQueryScopeState();
}
class _FlQueryScopeState extends State<FlQueryScope> {
@override
Widget build(BuildContext context) {
Theme.of(context);
return widget.child;
}
}