searchfield
searchfield copied to clipboard
A highly customizable simple and easy to use autocomplete widget to your Flutter Application.This Widget allows you to search and select from list of suggestions.
**Describe the bug** A RangeError is thrown when the currently selected value is not part of the results list and the field is submitted with the enter key. ``` The...
**Describe the bug** A clear and concise description of what the bug is. Unhandled Exception: Bad state: Cannot add new events after calling close When I used second-time SearchField, I...
**Is your feature request related to a problem? Please describe.** In a chat application users would want to see suggestions only when inputting certain terms e.g pressing `@` shows list...
**Is your feature request related to a problem? Please describe.** As flutter goes beyond mobile it would be nice to have a searchfield capable to write multiline description similar to...
**Describe the bug** There are many tests that have been commented in test/ folder **Code sample** Show code sample ```dart Paste minimal and complete code sample here to investigate the...
This will solve - Issue https://github.com/maheshmnj/searchfield/issues/84 - Issue https://github.com/maheshmnj/searchfield/issues/38 sample demo code ```dart import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({Key? key}) :...
**Is your feature request related to a problem? Please describe.** See this example: [Image link](https://imgur.com/a/KDStoR4) As you can see, the string is divided using `\n` to form multiple lines. The...
**Describe the bug** The scroll button issue while you want to scroll with the scroll button, as most scrollable lists when you hold the scroll button, you can scroll upward...
Hi, The scroll navigation not working if the current selected item position is more than 10. Note: my `maxSuggestionsInViewPort is 10`. `windows` ```` var countries = [ 'United States', 'Germany',...
As the package is growing the code quality is severely degraedd, this issue highlights some areas of improvement - [ ] The code should be refactored to correctly detect taps...