selectpicker 1.1.2 copy "selectpicker: ^1.1.2" to clipboard
selectpicker: ^1.1.2 copied to clipboard

A simple package for creating a SelectPicker.

Features #

a simple way to create a selector with predefined options for the user

Images #

Start All Filter Select
## Getting started

Just import the package.

import 'package:selectpicker/selectpicker.dart';

And transform your list in a list of SelectPickerItem and call the SelectPicker

SelectPicker(
        hint: "Select an item",
        list: [
            SelectPickerItem("Item 1", "1", null),
            SelectPickerItem("Item 1", "2", null),
            SelectPickerItem("Item 1", "3", null),
        ],
        selectFirst: true,
        showId: true,
        onSelect: (value) {
        if (mounted) {
            ScaffoldMessenger.of(context).clearSnackBars();
            ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text(value.title.toString())));
          }
        },
        hintSearch: "Search by item description or ID",
        selectPickerInputStyle: SelectPickerInputStyle(),
)

Enjoy.

Example #

This a simple screen with usage example. example/example.dart

import 'package:flutter/material.dart';
import 'package:selectpicker/models/select_picker_item.dart';
import 'package:selectpicker/selectpicker.dart';
import 'package:selectpicker/styles/input_style.dart';

class Tela extends StatefulWidget {
  const Tela({super.key});

  @override
  State<Tela> createState() => _TelaState();
}

class _TelaState extends State<Tela> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text("SelectPicker", style: TextStyle(color: Colors.white)),
        backgroundColor: Colors.blue,
      ),
      body: Column(
        mainAxisSize: MainAxisSize.max,
        mainAxisAlignment: MainAxisAlignment.center,
        children: [
          Padding(
            padding: const EdgeInsets.all(8.0),
            child: SelectPicker(
              hint: "Select an UF",
              list: getStatesPicker(),
              selectFirst: false,
              onSelect: (value) {
                ScaffoldMessenger.of(context).clearSnackBars();
                ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text(value.title.toString())));
              },
              hintSearch: "Search by UF description or ID",
              selectPickerInputStyle: SelectPickerInputStyle(),
              initialItem: "DF",
            ),
          ),
          Padding(
            padding: const EdgeInsets.all(8.0),
            child: SelectPicker(
              hint: "Select an item",
              list: [
                SelectPickerItem("Item 1", "1", null),
                SelectPickerItem("Item 1", "2", null),
                SelectPickerItem("Item 1", "3", null),
              ],
              selectFirst: true,
              showId: true,
              onSelect: (value) {
                if (mounted) {
                  ScaffoldMessenger.of(context).clearSnackBars();
                  ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text(value.title.toString())));
                }
              },
              hintSearch: "Search by item description or ID",
              selectPickerInputStyle: SelectPickerInputStyle(),
            ),
          ),
        ],
      ),
    );
  }

  static List<Uf> getUf() {
    List<Uf> list = [];
    list.add(Uf("Acre", "AC"));
    list.add(Uf("Alagoas", "AL"));
    list.add(Uf("Amapá", "AP"));
    list.add(Uf("Amazonas", "AM"));
    list.add(Uf("Bahia", "BA"));
    list.add(Uf("Ceará", "CE"));
    list.add(Uf("Espírito Santo", "ES"));
    list.add(Uf("Goiás", "GO"));
    list.add(Uf("Maranhão", "MA"));
    list.add(Uf("Mato Grosso", "MT"));
    list.add(Uf("Mato Grosso do Sul", "MS"));
    list.add(Uf("Minas Gerais", "MG"));
    list.add(Uf("Pará", "PA"));
    list.add(Uf("Paraíba", "PB"));
    list.add(Uf("Paraná", "PR"));
    list.add(Uf("Pernambuco", "PE"));
    list.add(Uf("Piauí", "PI"));
    list.add(Uf("Rio de Janeiro", "RJ"));
    list.add(Uf("Rio Grande do Norte", "RN"));
    list.add(Uf("Rio Grande do Sul", "RS"));
    list.add(Uf("Rondônia", "RO"));
    list.add(Uf("Roraima", "RR"));
    list.add(Uf("Santa Catarina", "SC"));
    list.add(Uf("São Paulo", "SP"));
    list.add(Uf("Sergipe", "SE"));
    list.add(Uf("Tocantins", "TO"));
    list.add(Uf("Distrito Federal", "DF"));
    return list;
  }

  static List<SelectPickerItem> getStatesPicker() {
    try {
      List<SelectPickerItem> list = [];
      for (Uf item in getUf()) {
        list.add(SelectPickerItem(item.name, item.uf, item));
      }
      return list;
    } catch (error) {
      return [];
    }
  }
}

class Uf {
  Uf(this.name, this.uf);

  String name;
  String uf;
}


Credits #

6
likes
120
pub points
64%
popularity

Publisher

unverified uploader

A simple package for creating a SelectPicker.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, provider

More

Packages that depend on selectpicker