-
-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathExampleApp.swift
More file actions
28 lines (25 loc) · 629 Bytes
/
ExampleApp.swift
File metadata and controls
28 lines (25 loc) · 629 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
// ExampleApp.swift
// Example
//
// Created by Lasha Efremidze on 8/14/25.
// Copyright © 2025 Lasha Efremidze. All rights reserved.
//
import SwiftUI
@main
struct ExampleApp: App {
var body: some Scene {
WindowGroup {
TabView {
ContentView()
.tabItem {
Label("Modern", systemImage: "sparkles")
}
LegacyContentView()
.tabItem {
Label("Legacy", systemImage: "clock.arrow.circlepath")
}
}
}
}
}