func sheet<Item, Content>(item: Binding<Item?>, onDismiss : (() -> Void)?, content: (Item) -> Content) -> some View
Presents a sheet using the given item as a data source for the sheet’s content.
シートを提示します、与えられた項目をシートのもつ内容に対するデータソースとして使って。
func fullScreenCover <Content>(isPresented : Binding<Bool>, onDismiss : (() -> Void)?, content: () -> Content) -> some View
Presents a modal view that covers as much of the screen as possible when binding to a Boolean value you provide is true.
func fullScreenCover <Item, Content>(item: Binding<Item?>, onDismiss : (() -> Void)?, content: (Item) -> Content) -> some View
Presents a modal view that covers as much of the screen as possible using the binding you provide as a data source for the sheet’s content.