You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
378 B
22 lines
378 B
//
|
|
// BroadcastView.swift
|
|
// PadelClub
|
|
//
|
|
// Created by Razmig Sarkissian on 01/05/2024.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct BroadcastView: View {
|
|
var body: some View {
|
|
List {
|
|
}
|
|
.navigationTitle("Diffusion")
|
|
.navigationBarTitleDisplayMode(.inline)
|
|
.toolbarBackground(.visible, for: .navigationBar)
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
BroadcastView()
|
|
}
|
|
|