You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just went in and re-skinned my app to get rid of all the header bars so the slide doesn't look weird on iOS. All the toolbars and the page backgrounds are now the same color, and not all at the top of the page anymore, it looks a lot cooler because the app wasn't really iOS-themed to begin with.
To make the tab bar background sync up with the page background, I added some code so that when you change tabs, the tab bar changes color. It may be cooler if the tabs had this ability built-in. Here's the way it's working right now:
CSS:
super-tabs div.toolbar-background {
transition: background-color linear .2s;
}
onTabSelect(ev: any) {
switch (ev.id) {
case 'page1': this.bgcolor = 'primary'; break;
case 'page2': this.bgcolor = 'dark'; break;
case 'page3': this.bgcolor = 'danger'; break;
}
}
When you let go of the swipe or if you click a tab icon, the tab bar background does a quick transition to the new pages color.
If you could add [toolbarBackground] to the super-tab, then have the super-tabs listen to the selected tab's [toolbarBackground], I think this would take care of itself without having to be hard-coded like the above, instead it would be like so:
I suppose the indicator color would need to work the same way, I don't show it on my app. Anyhow, I think this would make super-tabs even more super, but I can make it work as-is if you don't think it's a good fit.
The text was updated successfully, but these errors were encountered:
I just went in and re-skinned my app to get rid of all the header bars so the slide doesn't look weird on iOS. All the toolbars and the page backgrounds are now the same color, and not all at the top of the page anymore, it looks a lot cooler because the app wasn't really iOS-themed to begin with.
To make the tab bar background sync up with the page background, I added some code so that when you change tabs, the tab bar changes color. It may be cooler if the tabs had this ability built-in. Here's the way it's working right now:
CSS:
HTML:
JS:
When you let go of the swipe or if you click a tab icon, the tab bar background does a quick transition to the new pages color.
If you could add [toolbarBackground] to the super-tab, then have the super-tabs listen to the selected tab's [toolbarBackground], I think this would take care of itself without having to be hard-coded like the above, instead it would be like so:
HTML:
I suppose the indicator color would need to work the same way, I don't show it on my app. Anyhow, I think this would make super-tabs even more super, but I can make it work as-is if you don't think it's a good fit.
The text was updated successfully, but these errors were encountered: