mahdi739
mahdi739
Hi. Go to the changePosition method and add these 4 lines at the end: ``` changePosition(ScrollNotification notification) { if (_isDragInProcess) { return; } setState(() { if (notification is ScrollUpdateNotification) {...
Hi @felangel 👋 How can we pass an array throw the command line? (instead of json config file) Edit: I saw the way of passing array as a string in...
Sorry for the duplicated commit history. I wrote (#3582) based on the changes here. Although this PR includes some newer commits not present in the later PR. Generally, I think...
I added a macro called `dispose_warn` that uses the `reactive_graph::log_warning` method to show warnings. I'm unsure about: - The name `dispose_warn` - The warning message - The implementation itself I've...
Thanks. Yes, especially now that there's a conflict with PR #3618.
I was thinking about a new implementation that uses a concrete type to address the limitations of trait specialization. This way, the numerous macro rules currently written could be replaced...
> A couple comments: > > 1. Using `log_warning` is fine -- while it does have the `// TODO` comment to remove it, it's also what I use for the...
> Hm... But I think my question continues to be: Do you have an example where the application is written correctly but you still need to do this? I think...
> As I understand it, the issue in the example you linked comes when you select and then delete an item, right? > > I think this is because you...
> I checked out the PR branch and your updated example in the PR still panics, though, with the exact same panic message as on `main`, so I'm not sure...