bountyface

Results 2 comments of bountyface

You need hammer.js and include it in your module (since Angular 9): `npm install hammerjs --save` app.module.ts ``` import { HammerModule} from '@angular/platform-browser'; @NgModule({ declarations: [ AppComponent ], imports: [...

You can solve the scrolling issue by setting the virtual scroll item size to the height of your rows in pixels. In your example above: **[virtualScrollItemSize]="46"** The flickering of the...