dropdown_flutter_fork 1.0.1+2 dropdown_flutter_fork: ^1.0.1+2 copied to clipboard
A Flutter package designed to enhance your app with customizable dropdowns, featuring list data search, network search, and multi-selection.
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add dropdown_flutter_fork
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get
):
dependencies:
dropdown_flutter_fork: ^1.0.1+2
Alternatively, your editor might support flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:dropdown_flutter_fork/custom_dropdown.dart';
import 'package:dropdown_flutter_fork/models/controllers.dart';
import 'package:dropdown_flutter_fork/models/custom_dropdown_decoration.dart';
import 'package:dropdown_flutter_fork/models/custom_dropdown_list_filter.dart';
import 'package:dropdown_flutter_fork/models/disabled_decoration.dart';
import 'package:dropdown_flutter_fork/models/list_item_decoration.dart';
import 'package:dropdown_flutter_fork/models/search_field_decoration.dart';
import 'package:dropdown_flutter_fork/utils/signatures.dart';
import 'package:dropdown_flutter_fork/widgets/animated_section.dart';
import 'package:dropdown_flutter_fork/widgets/dropdown_field.dart';
import 'package:dropdown_flutter_fork/widgets/dropdown_overlay/dropdown_overlay.dart';
import 'package:dropdown_flutter_fork/widgets/dropdown_overlay/widgets/items_list.dart';
import 'package:dropdown_flutter_fork/widgets/dropdown_overlay/widgets/search_field.dart';
import 'package:dropdown_flutter_fork/widgets/overlay_builder.dart';