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

014_swiftui_Text相关属性

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

在前面的课程。。我们已经大概的了解到了swiftUi课程的简单。。下面就是更精致的教程

效果

014_swiftui_Text相关属性

代码

//
//  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
相关标签: # swiftUI