This repository has been archived on 2025-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
ios_app/Shared/Views/Tab/Profile/AccountShareSheet.swift
2025-07-16 06:40:07 +03:00

26 lines
552 B
Swift

// AccountSwitchSheet.swift
import SwiftUI
struct AccountShareSheet: View {
@Binding var isPresented: Bool
@Binding var selectedAccount: String
let accounts: [String]
var body: some View {
VStack(spacing: 24) {
Text("Типо qr code")
.font(.title2)
.bold()
.padding(.top, 32)
Spacer()
Button("Закрыть") {
isPresented = false
}
.padding()
}
.padding()
}
}