• This project
    • Loading...
  • Sign in

developOne / harmonyPool

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • harmonyPool
  • ..
  • pages
  • FollowListPage.ets
  • desc: 关注列表(本地数据) · 049c66d2
    049c66d2 Browse Files
    yangchenggong1_wd authored 2024-03-19 18:41:11 +0800
FollowListPage.ets 280 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17

import { FollowFirstTabsComponent } from 'wdComponent'

@Entry
@Component
struct FollowListPage {

  build() {
    Column() {
      //Tab 详情
      FollowFirstTabsComponent()
    }
    .backgroundColor($r('app.color.color_F9F9F9'))
    .height('100%')
    .width('100%')
  }
}