Introduced WordListView

This commit is contained in:
2024-02-25 17:45:36 +01:00
parent bfe46bb6ba
commit 405e117944
3 changed files with 28 additions and 0 deletions

View File

@@ -22,6 +22,12 @@ struct MainView: View {
Image(systemName: "star")
Text("Anki")
}
WordListView()
.tag("Word List")
.tabItem {
Image(systemName: "list.bullet")
Text("Word List")
}
SettingsView()
.tag("Settings")
.tabItem {

18
WordAX/WordListView.swift Normal file
View File

@@ -0,0 +1,18 @@
//
// AllWordsView.swift
// WordAX
//
// Created by Oliver Hnát on 25.02.2024.
//
import SwiftUI
struct WordListView: View {
var body: some View {
Text("This is going to be a list of words")
}
}
#Preview {
WordListView()
}