From c418289169a537b8f95f8795f1c46624991623a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BB=98=E6=B5=A9=E7=A8=8B?= <798994511@qq.com> Date: Sat, 17 May 2025 11:17:35 +0000 Subject: [PATCH] =?UTF-8?q?update=20features/musicList/src/main/ets/compon?= =?UTF-8?q?ents/AlbumComponent.ets.=20gridrow=E5=A2=9E=E5=8A=A0=E6=96=AD?= =?UTF-8?q?=E7=82=B9=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 付浩程 <798994511@qq.com> --- .../src/main/ets/components/AlbumComponent.ets | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/features/musicList/src/main/ets/components/AlbumComponent.ets b/features/musicList/src/main/ets/components/AlbumComponent.ets index 56e8610..47bb2ea 100644 --- a/features/musicList/src/main/ets/components/AlbumComponent.ets +++ b/features/musicList/src/main/ets/components/AlbumComponent.ets @@ -126,7 +126,17 @@ export struct AlbumComponent { build() { Column() { - GridRow() { + GridRow({ + breakpoints: { + value: BreakpointConstants.BREAKPOINT_VALUE, + reference: BreakpointsReference.WindowSize + }, + columns: { + sm: BreakpointConstants.COLUMN_LG, + md: BreakpointConstants.COLUMN_LG, + lg: BreakpointConstants.COLUMN_LG + } + }) { GridCol({ span: { sm: GridConstants.SPAN_FOUR, md: GridConstants.SPAN_TWELVE, lg: GridConstants.SPAN_TWELVE } }) { -- Gitee