Usage

In order to show items in dropdown overlay list. Note: Responsiveness will provided by library. #Example Code

OwnDropdown(
            padding: EdgeInsets.all(20),
            decoration: BoxDecoration(
                color: Colors.white,
                borderRadius: BorderRadius.all(Radius.circular(10))),
            title: "Choose one of options",
            items: const [
              'Example One',
              'Example Two',
              "Example Three",
            ],
            onChanged: (index) {
              print(index);
            },
          )

Libraries

own_dropdown