目录
目录README.md

JoinedText

Build / Test

Deprecation

DEPRECATED: This library was created while result builders (previously known as function builders) were not yet officially a part of Swift language. Now you can use TextBuilder library by David Roman instead which provides the same basic functionallity and more using the latest Swift API.


A SwiftUI view for combining multiple Text views into a single Text instance.

Text {
    Text("This text can be")
    if isTrue {
        Text("bold,")
            .fontWeight(.bold)
        Text("monospaced")
            .font(.system(.body, design: .monospaced))
        Text("or")
    }
    Text("styled")
        .font(.system(.caption))
    Text("however")
        .italic()
    Text("you")
        .font(Font.title.smallCaps())
    Text("want and")
    Text("everything")
        .foregroundColor(.green)
        .underline()
    Text("will be combined 😃.")
}

Preview

Description

Similarly to how you can build regular view hierarchies, this library provides you with an additional initializer for Text view, that you can use to build complex sentences with varying styles. Inside of text definition block, you can use common code instructions such as if, if else, switch and similar statements to build complex multi style sentences.

Usage

Basics

You can use Text(_ content:) initializer to build your sentence from multiple Text views provided in passed closure.

Text {
    Text("Example")
    Text("sentence").bold()
}

Output:

Example sentence

String separator

By default all Texts declared inside of content block will be separated by a space character. You can change this behavior by providing your own separator text.

Text(separator: "-") {
    Text("joined")
    Text("with")
    Text("dashes")
}

Output:

joined-with-dashes

Advanced separator

For even more control, like additional styling, pass in Text instance as a separator.

Text(separator: Text(" ! ").bold()) {
    Text("bold")
    Text("exclamation")
    Text("mark")
}

Output:

bold ! exclamation ! mark

Control flow

Inside of text definition blocks you can use control flow statements such as if, switch or if let to build your combined Text.

Text {
   Text("Hello,")
   if let name = yourName {
       Text(name).bold()
   } else {
       Text("what is your name?")
   }
}

Output:

Hello, Łukasz

关于
64.0 KB
邀请码
    Gitlink(确实开源)
  • 加入我们
  • 官网邮箱:gitlink@ccf.org.cn
  • QQ群
  • QQ群
  • 公众号
  • 公众号

©Copyright 2023 CCF 开源发展委员会
Powered by Trustie& IntelliDE 京ICP备13000930号