func animation(Animation?) -> some ViewModifier
Returns a new version of the modifier that will apply
animation
to all animatable values within the modifier.
この修飾子のある新しいバージョンを返します、それはanimation
をこの修飾子内の全てのアニメ化可能な値に適用するものです。
func body(content: Self.Content) -> Self.Body
Gets the current body of the caller.
呼び出し側の現在のボディを取得します。
Available when
Body
is Never
.
Body
がNever
である時に利用可能です。
func concat<T>(T) -> ModifiedContent <Self, T>
Returns a new modifier that is the result of concatenating
self
with modifier
.
ある新しい修飾子を返します、それはself
をmodifier
と連結する結果です。
func transaction((inout Transaction) -> Void) -> some ViewModifier
Returns a new version of the modifier that will apply the transaction mutation function
transform
to all transactions within the modifier.
この修飾子のある新しいバージョンを返します、それはトランザクション変異関数transform
をこの修飾子内の全てのトランザクションに適用するものです。