-
Notifications
You must be signed in to change notification settings - Fork 13.5k
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
ion-back-button and ion-menu-toggle not visible on iOS #15545
Comments
Edit: this happens as well for |
Can confirm I'm seeing this issue as well. I think this is related to there being a .sc-ion-back-button-ios-h {
color: var(--ion-color-base);
} Somewhere, which is making the color match the background? I tossed a .sc-ion-back-button-ios-h {
color: white;
} in my global.scss and it seems to be back? |
+1 |
Well, I think this is related to #15436 |
I have added a PR -> #15847 They have fixed the back-button few weeks ago, but not the menu-button. I just fixed the problem with the color, but they have to add a lot of more css variables like they did at the back-button. So I don't know if they merge it or if they fix the whole menu-button soon |
Thank you very much. I wanted to link the issues in order to close both once the fix has been merged. Anyway I'll look into the source code to try to solve these problems asap since I've to deliver an app for the fifteenth of November |
Thanks for the issue! This issue is being locked to prevent comments that are not relevant to the original issue. If this is still an issue with the latest version of Ionic, please create a new issue and ensure the template is fully filled out. |
Bug Report
Ionic Info
Packaged Versions
Describe the Bug
The
ion-back-button
doesn't show the icon on iOS.Steps to Reproduce
Related Code
Expected Behavior
The icon should be visible.
Additional Context
Adding
mode="md"
to theion-back-button
component kind of fixes it: on iOS it actually shows the proper iOS back icon (chevron), not the Android back icon (arrow). However as I understand settingmode
tomd
should also change the icon to the Android icon? The only way of forcing it to use the Android Icon is to runsetupConfig({ mode: 'md' })
.The text was updated successfully, but these errors were encountered: