Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Basic content #1

Merged
merged 8 commits into from
Oct 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*.xcuserstate
*.xcworkspace
*.pbxproj
*.DS_Store
599 changes: 599 additions & 0 deletions My App/My App.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>SchemeUserState</key>
<dict>
<key>My App.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>0</integer>
</dict>
</dict>
</dict>
</plist>
11 changes: 11 additions & 0 deletions My App/My App/Assets.xcassets/AccentColor.colorset/Contents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"colors" : [
{
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
13 changes: 13 additions & 0 deletions My App/My App/Assets.xcassets/AppIcon.appiconset/Contents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"images" : [
{
"idiom" : "universal",
"platform" : "ios",
"size" : "1024x1024"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
6 changes: 6 additions & 0 deletions My App/My App/Assets.xcassets/Contents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"info" : {
"author" : "xcode",
"version" : 1
}
}
20 changes: 20 additions & 0 deletions My App/My App/ButtonView.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
//
// ButtonView.swift
// My App
//
// Created by Irfan Nafi on 10/15/23.
//

import SwiftUI

struct ButtonView: View {
var label: String

var body: some View {
Button(action: {
print("Button tapped")
}, label: {
Text(label)
})
}
}
33 changes: 33 additions & 0 deletions My App/My App/ContentView.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
//
// ContentView.swift
// My App
//
// Created by Irfan Nafi on 10/15/23.
//

import SwiftUI

struct ContentView: View {
var body: some View {
NavigationView {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
ButtonView(label: "Tap me!")
NavigationLink(destination: ListView(items: ["Item 1", "Item 2", "Item 3"])) {
Text("Go to list")
}
NavigationLink(destination: NetworkingView()) {
Text("Go to networking")
}
}
.padding()
}
}
}

#Preview {
ContentView()
}
18 changes: 18 additions & 0 deletions My App/My App/ListView.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
//
// ListView.swift
// My App
//
// Created by Irfan Nafi on 10/15/23.
//

import SwiftUI

struct ListView: View {
var items: [String]

var body: some View {
List(items, id: \.self) { item in
Text(item)
}
}
}
17 changes: 17 additions & 0 deletions My App/My App/My_AppApp.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
//
// My_AppApp.swift
// My App
//
// Created by Irfan Nafi on 10/15/23.
//

import SwiftUI

@main
struct My_AppApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}
42 changes: 42 additions & 0 deletions My App/My App/NetworkingView.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
//
// NetworkingView.swift
// My App
//
// Created by Irfan Nafi on 10/15/23.
//

import SwiftUI

struct NetworkingView: View {
@State var posts: [Post] = []

var body: some View {
List(posts, id: \.id) { post in
VStack(alignment: .leading) {
Text(post.title)
.font(.headline)
Text(post.body)
.font(.subheadline)
}
}
.task {
do {
posts = try await fetchPosts()
} catch {
print(error)
}
}
}

func fetchPosts() async throws -> [Post] {
let url = URL(string: "https://jsonplaceholder.typicode.com/posts")!
let (data, _) = try await URLSession.shared.data(from: url)
return try JSONDecoder().decode([Post].self, from: data)
}
}

struct Post: Codable, Identifiable {
let id: Int
let title: String
let body: String
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"info" : {
"author" : "xcode",
"version" : 1
}
}
36 changes: 36 additions & 0 deletions My App/My AppTests/My_AppTests.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
//
// My_AppTests.swift
// My AppTests
//
// Created by Irfan Nafi on 10/15/23.
//

import XCTest
@testable import My_App

final class My_AppTests: XCTestCase {

override func setUpWithError() throws {
// Put setup code here. This method is called before the invocation of each test method in the class.
}

override func tearDownWithError() throws {
// Put teardown code here. This method is called after the invocation of each test method in the class.
}

func testExample() throws {
// This is an example of a functional test case.
// Use XCTAssert and related functions to verify your tests produce the correct results.
// Any test you write for XCTest can be annotated as throws and async.
// Mark your test throws to produce an unexpected failure when your test encounters an uncaught error.
// Mark your test async to allow awaiting for asynchronous code to complete. Check the results with assertions afterwards.
}

func testPerformanceExample() throws {
// This is an example of a performance test case.
self.measure {
// Put the code you want to measure the time of here.
}
}

}
41 changes: 41 additions & 0 deletions My App/My AppUITests/My_AppUITests.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
//
// My_AppUITests.swift
// My AppUITests
//
// Created by Irfan Nafi on 10/15/23.
//

import XCTest

final class My_AppUITests: XCTestCase {

override func setUpWithError() throws {
// Put setup code here. This method is called before the invocation of each test method in the class.

// In UI tests it is usually best to stop immediately when a failure occurs.
continueAfterFailure = false

// In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this.
}

override func tearDownWithError() throws {
// Put teardown code here. This method is called after the invocation of each test method in the class.
}

func testExample() throws {
// UI tests must launch the application that they test.
let app = XCUIApplication()
app.launch()

// Use XCTAssert and related functions to verify your tests produce the correct results.
}

func testLaunchPerformance() throws {
if #available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 7.0, *) {
// This measures how long it takes to launch your application.
measure(metrics: [XCTApplicationLaunchMetric()]) {
XCUIApplication().launch()
}
}
}
}
32 changes: 32 additions & 0 deletions My App/My AppUITests/My_AppUITestsLaunchTests.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
//
// My_AppUITestsLaunchTests.swift
// My AppUITests
//
// Created by Irfan Nafi on 10/15/23.
//

import XCTest

final class My_AppUITestsLaunchTests: XCTestCase {

override class var runsForEachTargetApplicationUIConfiguration: Bool {
true
}

override func setUpWithError() throws {
continueAfterFailure = false
}

func testLaunch() throws {
let app = XCUIApplication()
app.launch()

// Insert steps here to perform after app launch but before taking a screenshot,
// such as logging into a test account or navigating somewhere in the app

let attachment = XCTAttachment(screenshot: app.screenshot())
attachment.name = "Launch Screen"
attachment.lifetime = .keepAlways
add(attachment)
}
}
Loading