mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-07 05:53:06 +00:00
Add skeleton for MeetingsView MeetingsFragment
This commit is contained in:
parent
d21c026bc9
commit
20f7d54c01
2 changed files with 36 additions and 0 deletions
18
Linphone/UI/Main/Meetings/Fragments/MeetingsFragment.swift
Normal file
18
Linphone/UI/Main/Meetings/Fragments/MeetingsFragment.swift
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
//
|
||||
// MeetingsFragment.swift
|
||||
// Linphone
|
||||
//
|
||||
// Created by QuentinArguillere on 18/04/2024.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct MeetingsFragment: View {
|
||||
var body: some View {
|
||||
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
||||
}
|
||||
}
|
||||
|
||||
#Preview {
|
||||
MeetingsFragment()
|
||||
}
|
||||
18
Linphone/UI/Main/Meetings/MeetingsView.swift
Normal file
18
Linphone/UI/Main/Meetings/MeetingsView.swift
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
//
|
||||
// MeetingsView.swift
|
||||
// Linphone
|
||||
//
|
||||
// Created by QuentinArguillere on 18/04/2024.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct MeetingsView: View {
|
||||
var body: some View {
|
||||
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
||||
}
|
||||
}
|
||||
|
||||
#Preview {
|
||||
MeetingsView()
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue