-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: TabGroup show/hide support, iOS 18+ elevated tab bar #14173
Conversation
@prashantsaini1 Please finish this PR |
use showTabBar/hideTabBar for animation, use tabBarVisible without animation
@m1ga I checked further and we don't even need So we will finally have all different controls:
|
@m1ga @hansemannn This PR is ready now. |
think the last push broke the build process @prashantsaini1 |
@m1ga resolved! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some iOS feedbacks - maybe @m1ga can check Android?
android/modules/ui/src/java/ti/modules/titanium/ui/TabGroupProxy.java
Outdated
Show resolved
Hide resolved
Android: I've created some test code to test the new functions: const window = Ti.UI.createWindow();
const btn = Ti.UI.createButton({
title: 'Show / hide tab group',
top: 0
});
const btn2 = Ti.UI.createButton({
title: 'enable / disable',
top: 50
});
let isVisible = false;
btn.addEventListener('click', () => {
// tabGroup.tabBarVisible = !tabGroup.tabBarVisible;
if (isVisible) {
tabGroup.hideTabBar()
} else {
tabGroup.showTabBar()
}
isVisible = !isVisible;
});
btn2.addEventListener('click', () => {
tabGroup.enabled = !tabGroup.enabled;
});
window.add([btn, btn2]);
let tabGroup = Ti.UI.createTabGroup({
style: Ti.UI.Android.TABS_STYLE_BOTTOM_NAVIGATION,
tabBarVisible: false,
tabs: [
Ti.UI.createTab({
window,
title: "tab1"
}),
Ti.UI.createTab({
window: Ti.UI.createWindow(),
title: "tab2"
})
]
});
tabGroup.open(); There is one minor Android issue: when it is hidden by default and then you click "show" it won't run the animation. If you hide and show it again it will. Rest is looking good: showTabBar(), hideTabBar() and enabled work. |
@m1ga Thanks for the test cases.
I'll give it a try again and see if it works! |
#14190 has the changes for the |
This PR is finally complete from my end. Latest updates:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Last iOS changes, thank you!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Android looking good 👍 Features work fine in the normal BottomNavigation and the new one and with the normal TabGroup.
Goal: Show/hide tab-bar programmatically, especially on iOS 18+ elevated tab bar which obstructs custom nav bar on iPad apps with a TabGroup.
Properties
tabBarVisible
: show/hide the tab-bar, now on iOS 18+ also.view.visible
on Android.showTabBar() / hideTabBar()
methods.enabled
: Android only: enable/disable the swipe and click events on Tabs.true
. This has been decoupled from the previousdisableTabNavigation
to allow disablingTabGroup
interactions without hiding it actually. To hide theTabGroup
, new properties/methods can be used.Methods
Ti.UI.TabGroup.showTabBar()
: shows the tab bar with animation.Ti.UI.TabGroup.hideTabBar()
: shows the tab bar with animation.Removed methods: (These methods do not work programmatically)
Ti.UI.Window.showTabBar()
Ti.UI.Window.hideTabBar()