* refactor UI and API, send command on Enter, fix Date parsing * UI sheets to create connection and groups * show received messages * readme
22 lines
384 B
Swift
22 lines
384 B
Swift
//
|
|
// ScanQRCodeView.swift
|
|
// SimpleX
|
|
//
|
|
// Created by Evgeny Poberezkin on 29/01/2022.
|
|
// Copyright © 2022 SimpleX Chat. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct ScanQRCodeView: View {
|
|
var body: some View {
|
|
Text("ScanQRCodeView")
|
|
}
|
|
}
|
|
|
|
struct ScanQRCodeView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
ScanQRCodeView()
|
|
}
|
|
}
|