flutter_filterable_search 0.0.1 flutter_filterable_search: ^0.0.1 copied to clipboard
a powerful and highly customizable Flutter widget designed to facilitate efficient search operations on large lists of objects.
import 'package:flutter/material.dart';
import 'flutter_filterable_search_example.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Alt Flutter Sample',
debugShowCheckedModeBanner: false,
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: FlutterFilterableSearchExample(),
);
}
}