GithubHelp home page GithubHelp logo

Comments (5)

AhmedLSayed9 avatar AhmedLSayed9 commented on July 1, 2024

Can you try the latest beta version?

from dropdown_button2.

tkumark avatar tkumark commented on July 1, 2024

tried with the latest beta keyboard input is working thanks. any eta when it will be out of beta? thanks

from dropdown_button2.

AhmedLSayed9 avatar AhmedLSayed9 commented on July 1, 2024

I'm still thinking if we can add pagination or not.
It shouldn't take much time if we don't include pagination in the next release :)

from dropdown_button2.

gusadolfo123 avatar gusadolfo123 commented on July 1, 2024

tried with the latest beta keyboard input is working thanks. any eta when it will be out of beta? thanks

I have the same problem but I can't solve it with the beta, could you give me an example of the implementation you did :) in this moment need use DropdownButtonFormField2

from dropdown_button2.

gusadolfo123 avatar gusadolfo123 commented on July 1, 2024

I could solve it in the following way, I can that the DropdownButtonFormField2 does not allow me to select an element with the keyboard until it has not been previously selected, so I had to create an extension of DropdownItem that has the property focusNode which serves me to assign the focus programmatically to any element of the DropdownButtonFormField2. In my case I indicate that if there are no previously selected elements it assigns the focus to the first element of the list otherwise it maintains the focus to the element that at the moment has it.

CustomDropdownItem:

class CustomDropdownItem<T> extends DropdownItem<T> {
  final FocusNode focusNode;

  const CustomDropdownItem({
    super.key,
    required super.value,
    required super.child,
    required this.focusNode,
  });

  @override
  Widget build(BuildContext context) {
    return Focus(
      focusNode: focusNode,
      child: child,
    );
  }
}

Building the DropdownButtonFormField2 with the function onMenuStateChange:

onMenuStateChange: (isOpen) {
 if (isOpen) {
            final CustomDropdownItem<T>? newVal =
                selectedItem ?? (widget.items.isNotEmpty ? widget.items.first : null);
            if (newVal != null) {
              Future.delayed(const Duration(milliseconds: 100), () {
                if (widget.items.length > 1) {
                  if (newVal.focusNode.hasPrimaryFocus || newVal.focusNode.canRequestFocus) {
                    FocusScope.of(context).requestFocus(newVal.focusNode);
                  }
                }
              });
            }
          }
},

Result:
mobile123

from dropdown_button2.

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.