gpt4 book ai didi

ionic2:标题标题未对齐中心

转载 作者:行者123 更新时间:2023-12-04 18:25:09 24 4
gpt4 key购买 nike

enter image description here

我正在尝试将菜单切换图标向左对齐,标题与标题中心对齐。我正在使用以下代码:

<ion-header>
<ion-toolbar color="primary">
<button ion-button menuToggle left>
<ion-icon name="menu"></ion-icon>
</button>
<ion-title>
Home
</ion-title>
</ion-toolbar>

但是标题没有出现在中间。请帮忙。提前致谢。

最佳答案

对于android设备,您需要放置此代码

使用此代码为我解决了这个问题。

page.html 这样做

<ion-header no-border-bottom>

<ion-navbar color="primary" class="home-nav">
<ion-title >Dashboard</ion-title>
<button ion-button menuToggle >
<ion-icon name="menu"></ion-icon>
</button>
</ion-navbar>
</ion-header>

app.scss 文件执行此操作
ion-header button, .back-button {
position: absolute !important;
z-index: 5;
}


ion-title {
position: absolute;
top: 0;
left: 0;
padding: 0 90px 1px;
width: 100%;
height: 100%;
text-align: center;
}

关于ionic2:标题标题未对齐中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43817214/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com