mirror of
https://github.com/mastodon/mastodon-ios.git
synced 2025-02-03 18:57:46 +01:00
Merge pull request #596 from mastodon/improve_post_media_inline_appearance
Improve media inline appearance
This commit is contained in:
commit
7e04dd3d31
@ -222,13 +222,17 @@ extension ComposeContentView {
|
||||
VStack(spacing: 16) {
|
||||
ForEach(viewModel.attachmentViewModels, id: \.self) { attachmentViewModel in
|
||||
AttachmentView(viewModel: attachmentViewModel)
|
||||
.clipShape(Rectangle())
|
||||
.clipShape(RoundedRectangle(cornerRadius: 4))
|
||||
.badgeView(
|
||||
Button {
|
||||
viewModel.attachmentViewModels.removeAll(where: { $0 === attachmentViewModel })
|
||||
} label: {
|
||||
Image(systemName: "minus.circle.fill")
|
||||
.resizable()
|
||||
.frame(width: 20, height: 20)
|
||||
.foregroundColor(.red)
|
||||
.background(Color.white)
|
||||
.clipShape(Circle())
|
||||
}
|
||||
)
|
||||
} // end ForEach
|
||||
|
Loading…
x
Reference in New Issue
Block a user