searchable_paginated_dropdown 0.0.1 copy "searchable_paginated_dropdown: ^0.0.1" to clipboard
searchable_paginated_dropdown: ^0.0.1 copied to clipboard

outdated

Flutter searchable dropdown widget which can be used also with paginated requests.

example/lib/main.dart

import 'package:example/view/searchable_dropdown_example_view.dart';
import 'package:flutter/material.dart';

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Material App',
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Searchable Dropdown Example'),
        ),
        body: Column(
          children: const [
            SearchAbleDropdownExampleView(),
          ],
        ),
      ),
    );
  }
}
43
likes
0
points
1.87k
downloads

Publisher

verified publishermdikcinar.dev

Weekly Downloads

Flutter searchable dropdown widget which can be used also with paginated requests.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

async, flutter

More

Packages that depend on searchable_paginated_dropdown