-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
97 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.pbxproj merge=union |
Binary file added
BIN
+172 KB
.../project.xcworkspace/xcuserdata/adisveletanlic.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.
6 changes: 6 additions & 0 deletions
6
...-ios.xcodeproj/xcuserdata/adisveletanlic.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Bucket | ||
uuid = "A9383E38-2E26-4828-99C8-45C03575E718" | ||
type = "1" | ||
version = "2.0"> | ||
</Bucket> |
45 changes: 45 additions & 0 deletions
45
tumble-ios/Core/Views/Schedule/List/CardInformationView.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// | ||
// CardInformationView.swift | ||
// tumble-ios | ||
// | ||
// Created by Adis Veletanlic on 2023-01-26. | ||
// | ||
|
||
import SwiftUI | ||
|
||
struct CardInformationView: View { | ||
let title: String | ||
let courseName: String | ||
let location: String | ||
|
||
var body: some View { | ||
VStack (alignment: .leading) { | ||
Text(title) | ||
.font(.title2) | ||
.foregroundColor(Color("OnSurface")) | ||
.padding(.leading, 25) | ||
.padding(.trailing, 25) | ||
.padding(.bottom, 2.5) | ||
VStack { | ||
Text(courseName) | ||
.font(.title3) | ||
.foregroundColor(Color("OnSurface")) | ||
.padding(.leading, 25) | ||
.padding(.bottom, 10) | ||
Spacer() | ||
} | ||
HStack { | ||
Spacer() | ||
Text(location) | ||
.font(.title3) | ||
.foregroundColor(Color("OnSurface")) | ||
Image(systemName: "location") | ||
.font(.title3) | ||
.foregroundColor(Color("OnSurface")) | ||
.padding(.trailing, 5) | ||
} | ||
.padding(.trailing, 10) | ||
Spacer() | ||
} | ||
} | ||
} |
45 changes: 45 additions & 0 deletions
45
tumble-ios/Core/Views/Search/Preview/PreviewCardInformationView.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// | ||
// PreviewCardInformationView.swift | ||
// tumble-ios | ||
// | ||
// Created by Adis Veletanlic on 2023-01-27. | ||
// | ||
|
||
import SwiftUI | ||
|
||
struct PreviewCardInformationView: View { | ||
let title: String | ||
let courseName: String | ||
let location: String | ||
var body: some View { | ||
VStack (alignment: .leading) { | ||
Text(title) | ||
.font(.title2) | ||
.foregroundColor(Color("OnSurface")) | ||
.padding(.leading, 25) | ||
.padding(.trailing, 25) | ||
.padding(.bottom, 2.5) | ||
VStack { | ||
Text(courseName) | ||
.font(.title3) | ||
.foregroundColor(Color("OnSurface")) | ||
.padding(.leading, 25) | ||
.padding(.bottom, 10) | ||
Spacer() | ||
} | ||
HStack { | ||
Spacer() | ||
Text(location) | ||
.font(.title3) | ||
.foregroundColor(Color("OnSurface")) | ||
Image(systemName: "location") | ||
.font(.title3) | ||
.foregroundColor(Color("OnSurface")) | ||
.padding(.trailing, 5) | ||
} | ||
.padding(.trailing, 10) | ||
Spacer() | ||
} | ||
} | ||
} | ||
|