014_swiftui_Text相关属性
程序员文章站
2022-05-30 13:49:08
...
在前面的课程。。我们已经大概的了解到了swiftUi课程的简单。。下面就是更精致的教程
效果
代码
//
// ContentView.swift
// learn_swiftUi
//
// Created by liuan on 2020/5/14.
// Copyright © 2020 liuan. All rights reserved.
//
import SwiftUI
struct ContentView: View {
var body: some View {
// VStack最多容纳10个视图
VStack{
Text("Hello, World!")
.bold()
Text("Hello ,world!")
.italic()
Text("Hello ,world!")
.underline()
Text("Hello ,world!")
.underline(true,color: .orange)
// 删除线
Text("Hello ,world!")
.strikethrough()
Text("Hello ,w
下一篇: 015_swiftui_刘海屏适配