怎样讲卖灯的网站做的好处,品牌注册证,企业微信收费标准一年多少钱,珠海网站制作专业1.Tabs组件
Tabs组件的页面组成包含两个部分#xff0c;分别是TabContent和TabBar。TabContent是内容页#xff0c;TabBar是导航页签栏.
根据不同的导航类型#xff0c;布局会有区别#xff0c;可以分为底部导航、顶部导航、侧边导航#xff0c;其导航栏分别位于底部、顶…1.Tabs组件
Tabs组件的页面组成包含两个部分分别是TabContent和TabBar。TabContent是内容页TabBar是导航页签栏.
根据不同的导航类型布局会有区别可以分为底部导航、顶部导航、侧边导航其导航栏分别位于底部、顶部和侧边
2.示例代码 Entry
Component
struct TabsPage {State private selectedIndex: number 0;private controller: TabsController new TabsController()private itemList [关注,视频,游戏,数码,科技,影视,体育,]build() {Column() {//BarPosition.Start//BarPosition.EndTabs({ barPosition: BarPosition.Start, controller: this.controller }) {ForEach(this.itemList, (item) {TabContent() {Column() {Text(item).fontSize(24).fontColor(Color.White)}.width(100%).height(100%) // 如果需要垂直居中确保高度设置正确.alignItems(HorizontalAlign.Center) // 水平居中子组件.justifyContent(FlexAlign.Center) // 垂直居中子组件.backgroundColor(Color.Green)}.tabBar({text: item})})}// .vertical(true) //开启侧边导航栏// .barWidth(100) //开启侧边导航栏设置barWidth// .barHeight(300) //开启侧边导航栏设置barHeight.barWidth(100%) // 开启顶部/底部导航栏设置TabBar宽度.barHeight(60) // 开启顶部/底部导航栏设置TabBar高度.width(100%) // 设置Tabs组件宽度.height(100%) // 设置Tabs组件高度.backgroundColor(0xffADD8E6) // 设置Tabs组件背景颜色.onChange((index: number) {this.selectedIndex index;console.info(${this.selectedIndex} );})}.width(100%).height(100%)}
}
3.效果
开启顶部导航的情况
.barWidth(100%) // 开启顶部/底部导航栏设置TabBar宽度
.barHeight(60) // 开启顶部/底部导航栏设置TabBar高度
效果如下 开启侧边导航的情况 .vertical(true) //开启侧边导航栏默认是不开启侧边导航栏的.barWidth(100) //开启侧边导航栏设置barWidth.barHeight(300) //开启侧边导航栏设置barHeight
效果如下