Files
simplex-chat/apps/ios/Shared/Views/NewChat/NewChatInviteButton.swift
T
2023-11-30 13:41:44 +04:00

32 lines
670 B
Swift

//
// NewChatInviteButton.swift
// SimpleX (iOS)
//
// Created by spaced4ndy on 28.11.2023.
// Copyright © 2023 SimpleX Chat. All rights reserved.
//
import SwiftUI
struct NewChatInviteButton: View {
@Binding var showNewChatSheet: Bool
var body: some View {
Button {
showNewChatSheet = true
} label: {
Image(systemName: "square.and.pencil")
.resizable()
.scaledToFit()
.frame(width: 24, height: 24)
}
.sheet(isPresented: $showNewChatSheet) {
NewChatView(selection: .invite)
}
}
}
//#Preview {
// NewChatInviteButton()
//}