-
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
bug: Navbar title mispalced on Android #3064
Comments
Any movement here? $scope.$on('$ionicView.afterEnter', function(event, state) {
if (state.stateName === 'app.prevPage1' || state.stateName === 'app.prevPage2') {
$timeout(function() {
$ionicNavBarDelegate.align('left');
}, 650);
}
}); |
This is also happening to me, please fix it |
Also can confirm the same view title issue on RC2 for Android on both chrome and on ionic-lab. |
Works fine in Thanks! |
I had a similar issue and fixed it by applying title class to h1 tags
|
Hi, I face this issue for a second while switching between tabs. this happens only for the first time. |
hi, i have exaclty the same bug, on the latest 1.3.1 release of ionic. I don't have the pb in the browser and on iOS. @adamdbradley , hi Adam, an idea ? thank's for your help my code, in my side menu : in the others pages : |
Same bug in the latest ionic release on a v1 app! Any workarounds, please? |
Bug still exists in Ionic v1 :-( This CSS fixed it for me:
Not the most elegant way, but I needed a quick fix, and this works for now! |
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. |
Type: bug
Platform: android 4.4 browser
Version: v1.0.0-beta.14
Hi,There seems to be an issue with the title in the navbar on Android devices. This appears when the navbar is hidden and then shown again using the
hide-nav-bar
attribute ofion-view
.I was not able to create a Codepen demo, because it only happens when I run the app on the device or using
ionic server --lab
. Therefore, I have created a test repo where this can be simulated.Steps to reproduce:
ionic server --lab
.Playlists
using the side menuPlaylists
view and press the Toggle icon again to show the nav barResult:
The title overlaps the menu icon.
The text was updated successfully, but these errors were encountered: