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

customise the dropdown, adjust according to you.

example/lib/main.dart

import 'package:custom_dropdown_flutter/custom_dropdown_flutter.dart';
import 'package:flutter/material.dart';

void main() => runApp(MycustomDropdown());

class MycustomDropdown extends StatelessWidget {
  const MycustomDropdown({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        backgroundColor: const Color.fromARGB(255, 104, 203, 125),
        appBar: AppBar(
          title: Text("Custom DropDown"),
          backgroundColor: Colors.blueAccent,
        ),
        body: Center(
          child: Padding(
            padding: EdgeInsets.symmetric(horizontal: 20),
            child: CustomDropDown(
              itemsList: [
                "Apple",
                "Oranges",
                "Grapes",
                "Mango",
                "Papaya",
                "Kiwi",
              ],
            ),
          ),
        ),
      ),
    );
  }
}
0
likes
140
points
25
downloads

Publisher

unverified uploader

Weekly Downloads

customise the dropdown, adjust according to you.

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

flutter

More

Packages that depend on custom_dropdown_flutter