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{}`