Trying to find a dropdown example with scroll controller. What I'm trying to achieve is to load more data when it reach the end of the dropdown, I tried DropdownButton and PopupMenuButton, both no luck as it didn't have a scroll controller parameter. Is there anyway to handle dropdown button in such way that I wanted?
Related Questions in FLUTTER
- Flutter + Dart: Editing name of a tab shows up a black screen
- The Binary Version Of its metadata is 1.8.0, expected Version is 1.6.0 build error
- Way to get CustomPainter to track face in Camera Flutter MLKit
- flutter Null check error: did not show file and line number
- Creating multiple instances of a class with different initializing values in Flutter
- I want to paste stickers into to my TextField and to show the stickers beside the emojis
- Flutter plugin development android src not opening after opening example
- Module not found when building flutter app for IOS
- How to make barrier area interactive in flutter modal bottom sheet
- Can an RPC result be included in a Supabase select function in Flutter for Data Modeling?
- Why do I need to wait to reaccess to Firestore database even though it has already done before?
- Flutter web app on Windows -how to support mouse drag for horizontal and vertical scrolling as well as using mouse wheel
- I wrote this time displaying FLUTTER app, How can I improve it?
- Appwrite and / or Spring Boot Backend
- Flutter two_dimensional_scrollables Web app Chrome - cannot get horizontal scroll to work?
Related Questions in DROPDOWNBUTTON
- Flutter DropdownButton Dynamic Default Value Error
- How to Make DropDownButton2 Reusable in flutter
- error when trying to load data from json to DropDownButton Flutter dart
- DropdownMenu Widget issues = Flutter
- Remove the down arrow symbol for the Dropdown.Toggle in react-bootstrap
- Flutter dropdown_button2 searching item.child doesn't work in release mode but in debug mode run sucessfuly
- how can I rebuild the dropdownButton instantly , when I delete the items from DropdownMenuItem
- Remove dropdown item from dropdown once selected
- How to increase height for a DropdownButton in Flutter
- How to Fix Dropdown Button Text Alignment Issue?
- Flutter DropdownButton items == null || items.isEmpty || value == null
- Why DropDownButton doesn't work in Flutter?
- Setting DropdownButton Initial Value in Flutter
- How do I remove duplicate text in DropdownMenuItem?
- DropdownButton throwing an error on initializing
Related Questions in POPUPMENUBUTTON
- Flutter Web PopupMenuButton - can't style The button that open the menu on hover
- i want to create pop up menu like this in flutter
- Trigger a rebuild of PopupMenuItem based on event in another PopupMenuItem
- Flutter PopupMenuButton from a list
- How can I dynamically update the content of a PopupMenuButton in Flutter based on loading state?
- Flutter bug with PopupMenuButton and TextFiend inside AlertDialog
- How to show pop-up menu when an IconButton is clicked Flutter
- how to simplify dinamically this PopupMenuButton arrangement in Flutter?
- Flutter how to dismiss showMenu when mouse exit the PopupMenuItem
- Flutter - PopupMenuButton - add an item manually after adding items from a list
- dropdownbutton inside popupmenubutton works but wont show updated selected value (flutter)
- Flutter: Dismissible in PopupMenuButton does not risize while displayed
- Create List of PopupMenuItems from firebase data
- Trying to use a nested set of PopupMenuButtons in a flutter app
- Flutter dropdown with scroll controller?
Related Questions in SCROLLCONTROLLER
- How to implement automatic collapsing/expanding of a section while scrolling in Flutter?
- Scrolling to the end of the ListView does not work as expected
- Select The Items From Horizontal List On Scrolling Vertical List Flutter
- Flutter web cannot change the ScrollConfiguration of TextFormField widget
- Flutter Web SIdemenu StateManagement
- How to reset scrollstate everytime I switch Tabs?
- flutter different scrollControllers have same offset value issue
- Flutter ScrollControllers '_positions.isNotEmpty' error - even when controllers are attached
- ScrollController Not Working Showing Values As Expected
- ScrollController to multiple scroll views. Flutter with Cubit
- Using Nested Litview for Comments and Replies in fluttter
- Why is Flutter's ScrollController's listener callback sometimes executed before setState?
- Automatic scrolling with animated typer animated text kit in flutter
- How to make scrollController attach to scrollbar after switching to a different navigation tab
- On click of text , i want the list view builder to show that container of that specific text
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
That's because it's not a good practice to load massive data in the drop-down. It's recommended to use a drop-down for specific small-sized data so that users don't have to just scroll infinitely to search for their required option.
You can either navigate the user to another dedicated screen (where there'll be a search let's say) or open a modal bottom sheet.