参考代码@Entry @Component struct StackExample { build() { Stack({ alignContent: Alignment.Center }) { Text('First child, show in bottom').width('90%').height('80%').backgroundColor(0xd2cab3).align(Alignment.Top) Text('Second child, show in top').width('70%').height('60%').backgroundColor(0xc1cbac).align(Alignment.Top) }.width('100%').height(150).margin({ top: 300 }).borderRadius(33).backgroundColor(Color.Red) } }
参考代码