* ios: improve group layout * different font * fix formatting * returns * localized strings --------- Co-authored-by: spaced4ndy <8711996+spaced4ndy@users.noreply.github.com>
41 lines
1.1 KiB
Swift
41 lines
1.1 KiB
Swift
//
|
|
// DeletedItemView.swift
|
|
// SimpleX
|
|
//
|
|
// Created by JRoberts on 04/02/2022.
|
|
// Copyright © 2022 SimpleX Chat. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
import SimpleXChat
|
|
|
|
struct DeletedItemView: View {
|
|
@Environment(\.colorScheme) var colorScheme
|
|
var chatItem: ChatItem
|
|
|
|
var body: some View {
|
|
HStack(alignment: .bottom, spacing: 0) {
|
|
Text(chatItem.content.text)
|
|
.foregroundColor(.secondary)
|
|
.italic()
|
|
CIMetaView(chatItem: chatItem)
|
|
.padding(.horizontal, 12)
|
|
}
|
|
.padding(.leading, 12)
|
|
.padding(.vertical, 6)
|
|
.background(chatItemFrameColor(chatItem, colorScheme))
|
|
.cornerRadius(18)
|
|
.textSelection(.disabled)
|
|
}
|
|
}
|
|
|
|
struct DeletedItemView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
Group {
|
|
DeletedItemView(chatItem: ChatItem.getDeletedContentSample())
|
|
DeletedItemView(chatItem: ChatItem.getDeletedContentSample(dir: .groupRcv(groupMember: GroupMember.sampleData)))
|
|
}
|
|
.previewLayout(.fixed(width: 360, height: 200))
|
|
}
|
|
}
|