欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

011_swiftui_卡牌战争。比点数

程序员文章站 2022-05-30 13:49:20
...

效果图

011_swiftui_卡牌战争。比点数

使用到的资源图片

https://download.csdn.net/download/mp624183768/12320155

拖动到xcode后。记得修改名称

back->card1

Background->background

目的

主要是熟悉使用swiftUI中的布局。image。和Button的点击事件

和使用

源代码

//
//  ContentView.swift
//  SwiftUiWarCardGame
//
//  Created by liuan on 2020/4/10.
//  Copyright © 2020 liuan. All rights reserved.
//

import SwiftUI

struct ContentView: View {
    @State private var randNum1=1
    @State private var randNum2=1
    @State private var score1=0
    @State private var score2=0
    var body: some View {
        ZStack{
            Image("background")
                .resizable()
                .edgesIgnoringSafeArea(.all)
            
            VStack {
                Spacer()
                Image("logo")
 
相关标签: # swiftUI