Skip to content

Instantly share code, notes, and snippets.

@giordanocardillo
Last active July 25, 2018 16:26
Show Gist options
  • Save giordanocardillo/77b5cc61624890ba453ac65754730efe to your computer and use it in GitHub Desktop.
Save giordanocardillo/77b5cc61624890ba453ac65754730efe to your computer and use it in GitHub Desktop.
Ionic 2.1.4 infinite-scroll in custom component fix

You must add the 'Content' to the viewProviders. It breaks the css margin of the root ion-content but works...

import { Content } from 'ionic-angular';

@Component({
selector: 'new-list',
templateUrl: 'list.html',
viewProviders: [Content]
})
export class MyNewComponent{}`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment