Showing
2 changed files
with
2 additions
and
3 deletions
| @@ -67,7 +67,6 @@ export struct ImageAndTextPageComponent { | @@ -67,7 +67,6 @@ export struct ImageAndTextPageComponent { | ||
| 67 | .padding({ left: 15, right: 15, }) | 67 | .padding({ left: 15, right: 15, }) |
| 68 | .justifyContent(FlexAlign.SpaceBetween) | 68 | .justifyContent(FlexAlign.SpaceBetween) |
| 69 | .alignItems(VerticalAlign.Bottom) | 69 | .alignItems(VerticalAlign.Bottom) |
| 70 | - .backgroundColor(Color.White) | ||
| 71 | 70 | ||
| 72 | Row() { | 71 | Row() { |
| 73 | Image($r('app.media.line')) | 72 | Image($r('app.media.line')) |
| @@ -181,6 +180,7 @@ export struct ImageAndTextPageComponent { | @@ -181,6 +180,7 @@ export struct ImageAndTextPageComponent { | ||
| 181 | } | 180 | } |
| 182 | .width(CommonConstants.FULL_WIDTH) | 181 | .width(CommonConstants.FULL_WIDTH) |
| 183 | .height(CommonConstants.FULL_HEIGHT) | 182 | .height(CommonConstants.FULL_HEIGHT) |
| 183 | + .backgroundColor(Color.White) | ||
| 184 | } | 184 | } |
| 185 | 185 | ||
| 186 | private async getDetail() { | 186 | private async getDetail() { |
| @@ -206,8 +206,7 @@ struct LoginPage { | @@ -206,8 +206,7 @@ struct LoginPage { | ||
| 206 | .visibility(this.isProtocol ? Visibility.Visible : Visibility.None) | 206 | .visibility(this.isProtocol ? Visibility.Visible : Visibility.None) |
| 207 | 207 | ||
| 208 | }.width('100%') | 208 | }.width('100%') |
| 209 | - .height('100%') | ||
| 210 | - | 209 | + .height('100%').backgroundColor(Color.White) |
| 211 | } | 210 | } |
| 212 | 211 | ||
| 213 | @Builder | 212 | @Builder |
-
Please register or login to post a comment