mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-06-04 10:21:50 +00:00
53040dbe1d
* iOS: chats and messages layout * model update for updated API * improve chat list view * chat view layouts * delete contacts * larger headers, clean up, move message reception loop to ContentView * settings: user profile
22 lines
389 B
Swift
22 lines
389 B
Swift
//
|
|
// CreateGroupView.swift
|
|
// SimpleX
|
|
//
|
|
// Created by Evgeny Poberezkin on 29/01/2022.
|
|
// Copyright © 2022 SimpleX Chat. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct CreateGroupView: View {
|
|
var body: some View {
|
|
Text("CreateGroupView")
|
|
}
|
|
}
|
|
|
|
struct CreateGroupView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
CreateGroupView()
|
|
}
|
|
}
|