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

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(),
          ],
        ),
      ),
    );
  }
}
28
likes
0
pub points
91%
popularity

Publisher

verified publishermdikcinar.dev

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