15 lines
229 B
Swift
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()
|
|
}
|
|
}
|