Initial Support
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user