Giter Club home page Giter Club logo

Comments (10)

lcuis avatar lcuis commented on August 22, 2024 7

Indeed, a default padding of 10.0 is applied.

To work around this, you could use a -10.0 x translation as in the following example:

SearchableDropdown.multiple(
        items: items,
        selectedItems: selectedItems,
        onChanged: (value) {
          setState(() {
            selectedItems = value;
          });
        },
        selectedValueWidgetFn: (item) {
          return Container(
              transform: Matrix4.translationValues(-10,0,0),
              alignment: Alignment.centerLeft,
              child: (Text(item.toString())));
        },
        underline: Container(
          height: 1.0,
          padding: const EdgeInsets.all(0.0),
          margin: const EdgeInsets.all(0.0),
          decoration: BoxDecoration(
              border:Border(bottom: BorderSide(color: Colors.teal, width: 3.0))
          ),
        ),
        isExpanded: true,
      )

from searchable_dropdown.

lcuis avatar lcuis commented on August 22, 2024 1

Also, if you'd like to align the end of the underline with the end of the clear icon, you could also want to work around some values by using the margin and padding of the underline as follows for example:

SearchableDropdown.multiple(
        items: items,
        selectedItems: selectedItems,
        onChanged: (value) {
          setState(() {
            selectedItems = value;
          });
        },
        selectedValueWidgetFn: (item) {
          return Container(
              transform: Matrix4.translationValues(-10,0,0),
              alignment: Alignment.centerLeft,
              child: (Text(item.toString())));
        },
        underline: Container(
          height: 1.0,
          padding: const EdgeInsets.only(right: 13.0),
          margin: const EdgeInsets.only(right: 13.0),
          decoration: BoxDecoration(
              border:Border(bottom: BorderSide(color: Colors.teal, width: 3.0))
          ),
        ),
        isExpanded: true,
      )

from searchable_dropdown.

lcuis avatar lcuis commented on August 22, 2024 1

You're welcome @boungly , enjoy!

from searchable_dropdown.

lcuis avatar lcuis commented on August 22, 2024

Hello @boungly ,

Thanks for reporting this issue.

Would you like to try with the following parameters to see if it works for you?

selectedValueWidgetFn: Function with parameter: item returning Widget to be used to display the selected value.
underline: String|Widget|Function with parameter: value returning String|Widget displayed below the selected item or the hint if none.

An example is given with the use of those parameters here:
https://github.com/icemanbsi/searchable_dropdown#Multi-custom-display-dialog

from searchable_dropdown.

boungly avatar boungly commented on August 22, 2024

@lcuis thank you so much for this response <3 That helped me a lot.

from searchable_dropdown.

lcuis avatar lcuis commented on August 22, 2024

My pleasure @boungly !

I am glad you solved your issue!

from searchable_dropdown.

boungly avatar boungly commented on August 22, 2024

@lcuis, But can we also adjust the padding for this?
Screen Shot 2020-04-08 at 10 36 09 AM

from searchable_dropdown.

boungly avatar boungly commented on August 22, 2024

I think that's all for me. Thank you so much ^^

from searchable_dropdown.

abhihasabe avatar abhihasabe commented on August 22, 2024

Indeed, a default padding of 10.0 is applied.

To work around this, you could use a -10.0 x translation as in the following example:

SearchableDropdown.multiple(
        items: items,
        selectedItems: selectedItems,
        onChanged: (value) {
          setState(() {
            selectedItems = value;
          });
        },
        selectedValueWidgetFn: (item) {
          return Container(
              transform: Matrix4.translationValues(-10,0,0),
              alignment: Alignment.centerLeft,
              child: (Text(item.toString())));
        },
        underline: Container(
          height: 1.0,
          padding: const EdgeInsets.all(0.0),
          margin: const EdgeInsets.all(0.0),
          decoration: BoxDecoration(
              border:Border(bottom: BorderSide(color: Colors.teal, width: 3.0))
          ),
        ),
        isExpanded: true,
      )

Hello,

When i try to user given code we are getting error,

Screenshot_2020-05-07-11-18-28-304_mahindra com btl

SearchableDropdown.multiple(
items: _dropdownMenuItems,
doneButton: Container(),
disabledHint: "Select State*",
selectedItems: selectedState,
displayClearIcon: false,
//hint: Text("Select State *"),
searchHint: "Select State *",
label: Text(
"Select State *",
style: TextStyle(color: Colors.black54),
),
onChanged: (value) {
setState(() {
selectedState = value;
});
if (selectedState.length > 0)
getDealers(selectedState);
},
closeButton: (selectedItems) {
return ("Save");
},
selectedValueWidgetFn: (item) {
return Container(
transform:
Matrix4.translationValues(-10, 0, 0),
alignment: Alignment.centerLeft,
child: (Text(item.toString())));
},
underline: Container(
height: 1.0,
decoration: BoxDecoration(
border: Border(
bottom: BorderSide(
color: Colors.black38,
width: 1.0))),
),
isExpanded: true,
)

from searchable_dropdown.

darkrevenger avatar darkrevenger commented on August 22, 2024

Hello,

When i try to user given code we are getting error,
image

Hey, I did it by doing this. It seems that onChange triggers first so you can set the value of your variable there.
image

And this is the result:
image

This is the entire code of the widget and its container in case you need context. Hope it helps!

Card(
                elevation: 3,
                child: Container(
                  decoration: BoxDecoration(
                    color: Colors.white,
                    borderRadius: BorderRadius.all(
                      Radius.circular(5.0),
                    ),
                  ),
                  child: SearchableDropdown.single(
                    iconEnabledColor: Colors.blue,
                    iconDisabledColor: Colors.blue,
                    displayClearIcon: false,
                    underline: Container(),
                    selectedValueWidgetFn: (t) {
                      return Container(
                          transform: Matrix4.translationValues(0,0,0),
                          alignment: Alignment.centerLeft,
                          child: (Text(paisModel.Descripcion)));
                    },
                    hint: "Pais *",
                    searchHint: "Pais *",
                    value: paisModel,
                    items: paises,
                    onChanged: (v) {
                      setState(() {
                        paisModel = v;
                        formarProvincias(v.PaisID);
                        changeFocus(provinciaIDFocusNode);
                      });
                    },
                    isExpanded: true,
                  ),
                ),
              ),

from searchable_dropdown.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.