angular icon indicating copy to clipboard operation
angular copied to clipboard

Fast and productive web framework provided by Dart

Results 84 angular issues
Sort by recently updated
recently updated
newest added

In my case: DateTime identifier is defined in the exports section of the component, but analyzer displays a problem during data binding: ![image](https://user-images.githubusercontent.com/22296883/84910955-348bad80-b0c0-11ea-80d1-5e92aced977f.png) ``` The method 'now' isn't defined for...

I have a edit form component with onPush strategy. In template there is input field: ``` ``` By default receiveCode is empty. I update receiveCode in OnActivate method by calling...

⛳ state: needs info

(ngSubmit) and (submit) do not prevent default form submit causing a page reload * [x] Dart VM version: 2.7.1 (Thu Jan 23 13:02:26 2020 +0100) on "windows_x64" * [x] AngularDart...

Using dart 2.7.2, angular 5.3.1, angular_forms 2.1.2, Chrome 81, and the following minimal example (**important update**: it seems that this behavior only occurs in Chrome 81, other browsers did not...

Dart Version, have tried on 2.7.2 and 2.8.0-dev-20 ``` environment: sdk: ">=2.7.0

Angular router is stripping array query parameter values and keeps only the last one. For example: `?filter=1&filter=2` will be replaced with `?filter=2`. The problem seems to be that the [router's...

Hello There. I was building a Website when i realized that i could find no resources about Events in the Router that could be Listened to. After Extensive Digging i...

I can't navigate directly to a parent route like the one below: "http://127.0.0.1:8080/#/home/lives" I can only navigate to the "/lives" page if I first navigate to "/home" I have two...

Consider the following 2 routes and components: **/heroes**: ```dart import 'package:angular/angular.dart'; @Component( selector: 'heroes-listing', template: 'Heroes listing...', ) class HeroesListingComponent implements OnInit { @override void ngOnInit() { print('Heroes listing init');...

I've run into an issue with an Angular component that injects `Element`: Within the same class file, I do an import of a dart file which adds functionality on `Element`...