blob: 03916fcf83e1d769c23cc91942fe3ed05308d44a (
plain) (
blame)
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
29
30
31
32
|
//
// ContentView.swift
// Juick
//
// Created by Vitaly Takmazov on 14.05.2023.
// Copyright © 2023 com.juick. All rights reserved.
//
import SwiftUI
struct ContentView: View {
var body: some View {
TabView {
Today()
.tabItem {
Image("ei-clock")
}
Text("Discussions")
.tabItem {
Image("ei-bell")
}
}
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
NavigationView {
ContentView()
}
}
}
|