Giter Club home page Giter Club logo

Comments (3)

blackandblue302 avatar blackandblue302 commented on August 22, 2024

I think you're searching by value int not string

from searchable_dropdown.

lcuis avatar lcuis commented on August 22, 2024

Hello @almayahi ,

Did you find a solution for your issue?

from searchable_dropdown.

lcuis avatar lcuis commented on August 22, 2024

Maybe you haven't seen this, there is a right-to-left Arabic (Moroccan) example on an alternate plugin search_choices :

SearchChoices.single(
    items: ["طنجة", "فاس‎", "أكادير‎", "تزنيت‎", "آكــلــو", "سيدي بيبي"]
        .map<DropdownMenuItem<String>>((string) {
      return (DropdownMenuItem<String>(
        child: Text(
          string,
          textDirection: TextDirection.rtl,
        ),
        value: string,
      ));
    }).toList(),
    value: selectedValueSingleDialogRightToLeft,
    hint: Text(
      "ختار",
      textDirection: TextDirection.rtl,
    ),
    searchHint: Text(
      "ختار",
      textDirection: TextDirection.rtl,
    ),
    closeButton: FlatButton(
      onPressed: () {
        Navigator.pop(MyApp.navKey.currentState.overlay.context);
      },
      child: Text(
        "سدّ",
        textDirection: TextDirection.rtl,
      ),
    ),
    onChanged: (value) {
      setState(() {
        selectedValueSingleDialogRightToLeft = value;
      });
    },
    isExpanded: true,
    rightToLeft: true,
    displayItem: (item, selected) {
      return (Row(textDirection: TextDirection.rtl, children: [
        selected
            ? Icon(
                Icons.radio_button_checked,
                color: Colors.grey,
              )
            : Icon(
                Icons.radio_button_unchecked,
                color: Colors.grey,
              ),
        SizedBox(width: 7),
        item,
        Expanded(
          child: SizedBox.shrink(),
        ),
      ]));
    },
    selectedValueWidgetFn: (item) {
      return Row(
        textDirection: TextDirection.rtl,
        children: <Widget>[
          (Text(
            item,
            textDirection: TextDirection.rtl,
          )),
        ],
      );
    },
)

Arabic search_choices

Maybe you can use this or adapt this for searchable_dropdown if you prefer?

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.