Files
2022-05-23 18:16:34 +09:00

15 lines
229 B
Swift

//
// Modifiers.swift
// LifeGameApp (iOS)
//
// Created by Yusuke Hosonuma on 2020/08/18.
//
import SwiftUI
extension Text {
func emptyContent() -> some View {
self.foregroundColor(.secondary).padding()
}
}