flutter_query_builder 1.0.1 flutter_query_builder: ^1.0.1 copied to clipboard
Instead of focusing on the details of writing queries, you'll be able to focus on the basic logic of your app. Thus, you will simplify the read and write operations in your database. This will certain [...]
import 'package:flutter/material.dart';
import 'home.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return const MaterialApp(
debugShowCheckedModeBanner: false,
title: 'flutter_query_builder',
home: HomeScreen(),
);
}
}