前端学SwiftUI第2篇:使用画布来开发

创建和组合视图

一、用视图模式修改文本

1、点到视图编辑模式

2、修改文本和文字颜色

  • 1、按住control+command 点击视图上的文字 你好世界
  • 2、选择第一个 Show SwiftUI
  • 3、修改Label 回车和Color选red

二、用视图模式修改布局

1、按住ctrl 并点击编辑器上的Text调出菜单,点击 Embed in VStack

Text外边就会包裹一个VStack表示纵向布局,可以理解成包了一个div

swift 复制代码
import SwiftUI
struct ContentView: View {
    var body: some View {
        VStack {
            Image(systemName: "globe")
                .imageScale(.large)
                .foregroundStyle(.tint)
            Image("man")
                .resizable()
                .frame(width: 60, height: 60)
            VStack {
                Text("你好中国")
                    .font(.title)
                .foregroundColor(Color.red)
            }
        }
        .padding()
    }
}
#Preview {
    ContentView()
}

2、添加一个新的文本

1、光标放在如下文字,点击右上角的+号,选择Text(也可以用拖动的方式)

2、修改为左对齐

bash 复制代码
1、编辑器上点击VStack

2、按住ctrl command 点击右边的视图会弹出编辑然后选择左边对其

三、用视图模式添加图片

创建新的文件img.swift

添加Image标签,cunfen是前面添加到图片名称

圆角图片

css 复制代码
import SwiftUI

struct img: View {

    var body: some View {

        Image("fengjing")
            .frame(width:200,height:200)
            .clipShape(Circle())
            .overlay {
                           Circle().stroke(.gray, lineWidth: 4)
                       }
                       .shadow(radius: 7)
    }

}

#Preview {
    img()
}
相关推荐
速盾cdn6 分钟前
速盾:vue的cdn是干嘛的?
服务器·前端·网络
四喜花露水39 分钟前
Vue 自定义icon组件封装SVG图标
前端·javascript·vue.js
前端Hardy1 小时前
HTML&CSS: 实现可爱的冰墩墩
前端·javascript·css·html·css3
chaosama1 小时前
禁止uni小程序ios端上下拉伸(橡皮筋效果)
ios·小程序
Zender Han1 小时前
Flutter自定义矩形进度条实现详解
android·flutter·ios
web Rookie1 小时前
JS类型检测大全:从零基础到高级应用
开发语言·前端·javascript
Au_ust1 小时前
css:基础
前端·css
帅帅哥的兜兜1 小时前
css基础:底部固定,导航栏浮动在顶部
前端·css·css3
yi碗汤园1 小时前
【一文了解】C#基础-集合
开发语言·前端·unity·c#
就是个名称1 小时前
购物车-多元素组合动画css
前端·css