local_query_filter 1.0.0 copy "local_query_filter: ^1.0.0" to clipboard
local_query_filter: ^1.0.0 copied to clipboard

A type-safe, composable query engine for client-side filtering, searching, sorting, and pagination of in-memory collections in Dart and Flutter.

example/lib/main.dart

import "package:example/ui/pages/home_page.dart";
import "package:flutter/material.dart";

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) => MaterialApp(
    home: const HomePage(),
    debugShowCheckedModeBanner: false,
    title: "Local Query Filter Showcase",
    theme: ThemeData(
      useMaterial3: true,
      brightness: Brightness.light,
      colorSchemeSeed: Colors.deepPurple,
    ),
    darkTheme: ThemeData(
      useMaterial3: true,
      brightness: Brightness.dark,
      colorSchemeSeed: Colors.deepPurple,
    ),
  );
}
6
likes
160
points
118
downloads

Publisher

unverified uploader

Weekly Downloads

A type-safe, composable query engine for client-side filtering, searching, sorting, and pagination of in-memory collections in Dart and Flutter.

Repository (GitHub)
View/report issues

Topics

#filter #search #sort #pagination #query

Documentation

API reference

License

MIT (license)

More

Packages that depend on local_query_filter