Mahesh Jamdade

Results 463 comments of Mahesh Jamdade

@sabari7320 How about you close the Searchfield when you scroll the UI? ```dart Searchfield( focusNode: focus, ... ) ``` ```dart scrollController.addListener(() { if (scrollController.position.userScrollDirection == ScrollDirection.reverse) { focus.unfocus(); } });...

Given that this can be achieved with the solution proposed above. I am going to close this as solved and there are no plans to add inline suggestions at this...

Generate Title using Gemini https://github.com/maheshj01/pastelog/commit/0d6dff996233a5c19882d2638bbf72f8df587f1c

This issue seems, bit Funky unable to reproduce it most of the times.

@sabari7320 Please file a separate issue with all the details

Regression identified https://github.com/maheshj01/searchfield/commit/0fddae486c8538307b9719e9230739733d5db378#diff-0d4d907e62a927a9256ddab70f46e08912d122e3b1634116aa27498cc43a2db8R447 This commit broke the selected item highlight, keyboard navigation works but there is no feedback for the selected item.

Fixed in latest release [v1.1.9](https://pub.dev/packages/searchfield/changelog)

- [x] Migrate State to use Redux from React Context API - [x] When Selecting a Note Render from local State first and then make a Network Request parallely and...

Hi @abdalmonem, Thanks for filing the issue, I am able to reproduce the issue on the latest stable and the master channel. CupertinoContextMenu is not interactible until the long press...