easy_dropdown2

Creator: coderz1093

Last updated:

0 purchases

easy_dropdown2 Image
easy_dropdown2 Images
Add to Cart

Description:

easy dropdown2

EasyDropdown #
EasyDropdown is a Flutter library that simplifies the creation of customizable and user-friendly dropdown menus. It offers flexible positioning, styling, and a straightforward API to create dropdowns with ease.

Features #

Create dropdown menus with customizable tiles.
Flexible positioning options: display dropdowns above or below a button.
Customize tile height, dropdown width, and other styling options.
Smooth animations for showing and hiding the dropdown.

Getting Started #
Installation #
To use EasyDropdown in your Flutter project, add it as a dependency in your pubspec.yaml file:
dependencies:
easy_dropdown2: ^1.1.0 # Replace with the latest version
copied to clipboard
Then, run flutter pub get to fetch the package.
Usage #
Here's a simple example of how to use EasyDropdown:
import 'package:flutter/material.dart';
import 'package:easy_dropdown2/easy_dropdown2.dart';

void main() {
runApp(MyApp());
}

class MyApp extends StatelessWidget {
final GlobalKey<EasyDropdownState> _dropdownKey = GlobalKey<EasyDropdownState>();

@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('EasyDropdown Example'),
),
body: Center(
child: EasyDropdown(
key: _dropdownKey,
items: Future.sync(() async {
// Simulate loading items from an async source
await Future.delayed(const Duration(seconds: 2));
return [
EasyDropdownTile(title: 'Item 1', onPressed: () {}),
EasyDropdownTile(title: 'Item 2', onPressed: () {}),
EasyDropdownTile(title: 'Item 3', onPressed: () {}),
];
}),
// Items can also just be an array
// items: [
// EasyDropdownTile(title: 'Test', onPressed: () {}),
// EasyDropdownTile(title: 'Test 1', onPressed: () {}),
// EasyDropdownTile(title: 'Test 2', onPressed: () {}),
// ],
child: ElevatedButton(
onPressed: () {
// Show the EasyDropdown when the button is pressed
_dropdownKey.currentState?.showOverlay();
},
child: Text('Open Dropdown'),
),
),
),
),
);
}
}
copied to clipboard
Documentation #
For detailed usage instructions and customization options, please refer to the documentation.
License #
This project is licensed under the MIT License - see the LICENSE file for details.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.