I watched several YT videos or posts in forums about super-tabs and did it exactly like it was shown. But somehow it is not working:( Do you have a solution or is super-tabs just not working anymore?
app.module.ts
import { SuperTabsModule } from "ionic2-super-tabs";
...
imports: [
BrowserModule,
IonicModule.forRoot(MyApp),
SuperTabsModule.forRoot(),
],
tabs.html
<super-tabs>
<super-tab [root]="tab1Root" title="Home" icon="home"></super-tab>
<super-tab [root]="tab2Root" title="About" icon="information-circle"></super-tab>
<super-tab [root]="tab3Root" title="Contact" icon="contacts"></super-tab>
</super-tabs>