flutter_listfilter 0.0.7 copy "flutter_listfilter: ^0.0.7" to clipboard
flutter_listfilter: ^0.0.7 copied to clipboard

This package makes filtering lists a breeze by utilizing filter chips based on a user model list. The beauty of this tool is its simplicity – no need for complex functions or methods. Just provide the [...]

example/lib/main.dart

import 'package:flutter/material.dart';

import 'FilterBasedList.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 MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primaryColor: Colors.blue,
        useMaterial3: true,
      ),
      home: FilterBasedList(),
    );
  }
}
6
likes
0
points
123
downloads

Publisher

verified publisherpostboxat18.blogspot.com

Weekly Downloads

This package makes filtering lists a breeze by utilizing filter chips based on a user model list. The beauty of this tool is its simplicity – no need for complex functions or methods. Just provide the model and a list of strings to be filtered, and you're all set. Key Features: - Simple filtering without extra functions - Easy integration with user models

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_bloc

More

Packages that depend on flutter_listfilter