Ahmed Elsayed
Ahmed Elsayed
Test the following sample and try updating it to reproduce the issue: ```dart void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); // This widget is...
The common practice for dropdown menus in web is to remain open until the user interacts with them (e.g., by clicking outside the menu or choosing an option). Auto closing...
Closing dropdown menu when the screen size changes is uncommon practice and can be opinionated. i.e: a user may want it to close just when screen size changes and another...
This might be related to #90
> Could you post the output of `puro version --log-level=4` and `puro --log-level=4 pub global activate flutterfire_cli`? The error sounds like there could be old stuff cached or in the...
@pingbird Still reproducible using puro `v1.4.10`. **Steps:** 1. Upgrade to puro `v1.4.10` 2. Run `puro rm stable -f` 3. Run `puro gc` 4. Run `puro create stable` 5. Run `puro...
You can override the `==` operator for the object itself. or, use some unique value at the object like an `id` to be used as value.
@vasilich6107 Can you check https://github.com/AhmedLSayed9/dropdown_button2/issues/127 and see if it's what you're looking for?
> Do you see any disadvantages on adding an ability to set custom comparator? You can set custom comparator by using `value`. I'm not sure what value will this add...
> I am experiencing a similar issue. Specifically, I am retrieving a list of users from an API, which includes the currently logged-in user but with less detailed information (same...