8000 GitHub - jacobkosmart/FruitsDic-ios-practice: To Practice onboarding , List, detail and setting View
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

jacobkosmart/FruitsDic-ios-practice

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
< C6B5 /td>
 
 
 
 
 
 

Repository files navigation

🍓 FruitsDic-ios-practice

스크린샷 스크린샷 스크린샷

📌 Main Features

  • OnBoding Screen with Page Tab View

  • Data model and fetch data

  • SwiftUI App life cycle works

  • Link View in SwiftUI

  • Disclosure View in SwiftUI

  • Display views dynamically in a list view with loop

📌 Project Setup

  • Device Orientation : Portrait

  • assets import

    • Appicon

    • Fruits

    • logo : It is svg file that need to selecting preserve vector data in image set. It can be scalable sized in vector file

    • Colors : To show fruits background color individually

    • Accent Colors : It is widely used for Buttons and other different UI elements in navigation

image

🔑 Check Point !

🔷 UI Structure

슬라이드1 슬라이드2 슬라이드3

🔷 Model

// FruitsModel.swift
import SwiftUI

// MARK: -  Fruit Model
struct Fruit: Identifiable {
	var id = UUID()
	var title: String
	var headline: String
	var image: String
	var gradientColors: [Color]
	var description: String
	var nutrition: [String]
}

🔷 Check core codes in details


🗃 Reference

The Simple Life(cycle) of a SwiftUI View- https://dbolella.medium.com/the-simple-life-cycle-of-a-swiftui-view-95e2e14848a2

Developer apple docs in DisclosureGroup - https://developer.apple.com/documentation/swiftui/disclosuregroup

서근 개발노트 swiftUI - https://seons-dev.tistory.com/50

Udemy SwiftUI Masterclass 2022 - https://www.udemy.com/course/swiftui-masterclass-course-ios-development-with-swift/

About

To Practice onboarding , List, detail and setting View

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0