direct-select-flutter
direct-select-flutter copied to clipboard
DirectSelect is a selection widget with an ethereal, full-screen modal popup displaying the available choices when the widget is interact with. https://dribbble.com/shots/3876250-DirectSelect-Dropdown...
Flutter Doctor flutter doctor -v ``` [√] Flutter (Channel stable, 2.2.3, on Microsoft Windows [Version 10.0.19043.1165], locale en-US) • Flutter version 2.2.3 at C:\flutter • Framework revision f4abaa0735 (8 weeks...
/C:/src/flutter/.pub-cache/hosted/pub.dartlang.org/direct_select_flutter-1.1.1/lib/direct_select_list.dart:1:8: Error: Error when reading '/C:/src/flutter/.pub-cache/hosted/pub.dartlang.org/direct_select_flutter-1.1.1/lib/direct_select_container.dart': The system cannot find the file specified. import 'package:direct_select_flutter/direct_select_container.dart'; ^ /C:/src/flutter/.pub-cache/hosted/pub.dartlang.org/direct_select_flutter-1.1.1/lib/direct_select_list.dart:133:24: Error: The getter 'DirectSelectContainer' isn't defined for the class 'DirectSelectState'. - 'DirectSelectState' is...
Hello, how instead of using a string how do I use an object? For example, create an object with name and value and in the display show item.name but the...
Usable in cases when direct_select is used in a scrollable container, ex. in bottom sheet. With default configuration there is no possibility to close bottom sheet by swipe down gesture...
When the select input is placed in a scrollable view and the select input is displayed at the bottom of your screen, it is not possible to use as the...
Is it any option to set empty initial value?
Is there any possibility to use it like a modal bottom sheet? Like: ```dart directSelect.showDirectSelect( context: context, items: [], .... ); ```
There was a bug where a user could tapdown, and if they first dragged horizontally, the list locks up. Using onPanUpdate is preferred to horizontal/vertical triggers in GestureDetector. I created...
Because of only using onVerticalDragUpdate, when a user would tap down and drag horizontally, the list would lock up. Using onPan instead of vertical/horizontal is preferred. Also updated a dependency...
Thanks for the great package! I would propose removing the Row and Expanded from the DirectSelectItem. This gives the user greater flexibility to design the widget as needed. Thanks!