21 lines
313 B
Swift
21 lines
313 B
Swift
//
|
|
// TextStyle.swift
|
|
// copinism
|
|
//
|
|
// Created by 黄仕杰 on 2024/6/4.
|
|
//
|
|
|
|
// 修饰 Text 组件的样式
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
extension Text {
|
|
func SetTextStyle(size: CGFloat, color: Color) -> some View {
|
|
self
|
|
.font(.system(size: size))
|
|
.foregroundStyle(color)
|
|
}
|
|
}
|
|
|