Albert Mañosa
Albert Mañosa
> @Indigo744 No need for an alternative as long as this project works. `componentWillMount` usage shall be refactored anytime soon.
You may explicitly specify generic types as [`groupBy`](https://api.flutter.dev/flutter/package-collection_collection/groupBy.html): ```dart final list = ['1', '2', '3']; Map newMap = groupBy(list, int.parse); // {1: [1], 2: [2], 3: [3]} ```
Aside from being a design decision by Carbon, a possible workaround like this one could fix the issue, leading to a properly centred Modal window: ```css /* for explanatory purposes...
I don’t know if I understand what should be going on here, but, for the Modal `on:submit` event to contain a reference to the Form as a target, it should...
As Svelte cannot know which elements are contained in the component’s `slot`, `hasForm` should be there to set the appropriate style—or the CSS styles should take that into account. So,...
How is the current state of this PR? Is it planned to follow its development? 🙃
> As for > > ``` > if (query.length >= 1 && > query.length print('ok'); > } > ``` Now that patterns are around, we could write an even more...
> Isn't @redeclare for my original issue? You should instead declare the extension type to `implements int` so it can inherit the members of `int`: ```Dart import "package:meta/meta.dart"; extension type...
> @albertms10 For the TypeScript comment, I'm not sure how it would be automatically inferred without typing it. Would typing `headers` as a tuple work? > > Something like: >...
> I would have probably removed the comparators from `Interval` and `Pitch` (but keep the `Comparable` interface), since the comparisons are just order comparisons instead of "greater than" or "less...