HarmonyOS 类似swiper的侧滑组件,children只占小于屏幕宽度的一部分

HarmonyOS
23h前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
fox280

可以使用list,demo如下:

@Entry
@Component
struct SwiperPage {
  @State message: string = 'Hello World';
  build() {
    RelativeContainer() {
      List({ space: 10 }) {
        ListItem() {
          Image($r("app.media.baozhen"))
            .width('70%')
            .height(120)
            .borderRadius(8)
        }
        ListItem() {
          Image($r("app.media.sky"))
            .width('70%')
            .height(120)
            .borderRadius(8)
        }
        ListItem() {
          Image($r("app.media.xingkong"))
            .width('70%')
            .height(120)
            .borderRadius(8)
        }
      }
      .chainAnimation(true)
      .edgeEffect(EdgeEffect.Spring)
      .listDirection(Axis.Horizontal)
      .width('100%')
      .height(120)
    }
    .height('100%')
    .width('100%')
  }
}
分享
微博
QQ
微信
回复
20h前
相关问题
自选swiper能否在屏幕中显示一部分
364浏览 • 1回复 待解决
HarmonyOS RN删除组件
30浏览 • 1回复 待解决
HarmonyOS 事件
56浏览 • 1回复 待解决
HarmonyOS 怎么禁止
161浏览 • 1回复 待解决
HarmonyOS webview返回上页问题
823浏览 • 1回复 待解决
删除功能列表有哪些?
808浏览 • 1回复 待解决
HarmonyOS 退出问题
51浏览 • 1回复 待解决