Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Enhancement] Added align text issue: Align Header text and dropdown item text #71 #90

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

hamhoney
Copy link

@hamhoney hamhoney commented Sep 21, 2024

Hi, @AbdullahChauhan .
I modified your animated_custom_dropdown library because I need to feature align to text.
It's default value is TextAlign.start.

Usage

  @override
  Widget build(BuildContext context) {
    return CustomDropdown<String>(
      hintText: 'Select job role',
      items: _list,
      initialItem: _list[0],
      excludeSelected: false,
      onChanged: (value) {
        log('SimpleDropdown onChanged value: $value');
      },
      textAlign: TextAlign.center,    // Here ! -- 
    );
  }

20240527_173740

Your library is very nice!
We will be good friend :)

Have a nice day!

@AbdullahChauhan AbdullahChauhan added the enhancement New feature or request label Sep 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants