Skip to content

Commit

Permalink
fix: 충돌 임시 커밋
Browse files Browse the repository at this point in the history
  • Loading branch information
hooni0918 committed Jul 15, 2024
2 parents 833076b + 27ba4a8 commit 9649454
Show file tree
Hide file tree
Showing 27 changed files with 632 additions and 98 deletions.
98 changes: 80 additions & 18 deletions KkuMulKum.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

This file was deleted.

22 changes: 22 additions & 0 deletions KkuMulKum/Network/DTO/Model/Promises/TardyInfoModel.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
//
// PromiseLateInfoResponseModel.swift
// KkuMulKum
//
// Created by YOUJIM on 7/8/24.
//


// MARK: 약속 지각 상세 조회

import Foundation

struct TardyInfoModel: ResponseModelType {
let penalty: String
let isPastDue: Bool
let lateComers: [Comer]
}

struct Comer: Codable {
let participantId: Int
let name, profileImg: String
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "img_empty_tardy.svg",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"images" : [
{
"filename" : "img_gift.svg",
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions KkuMulKum/Resource/Base/BaseViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ extension BaseViewController {
$0.horizontalEdges.bottom.equalToSuperview()
$0.height.equalTo(Screen.height(1))
}

let barAppearance = UINavigationBarAppearance()
barAppearance.backgroundColor = .white
navigationItem.standardAppearance = barAppearance
navigationItem.scrollEdgeAppearance = barAppearance
}

/// 네비게이션 바 BackButton 구성
Expand Down
21 changes: 9 additions & 12 deletions KkuMulKum/Source/Core/MainTabBarController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -49,20 +49,17 @@ final class MainTabBarController: UITabBarController {
tabBar.standardAppearance = tabBarAppearance
tabBar.scrollEdgeAppearance = tabBarAppearance

let homeNavigationController = UINavigationController(rootViewController: homeViewController).then {
$0.navigationBar.topItem?.backButtonDisplayMode = .minimal
$0.navigationBar.tintColor = .black
}
let homeNavigationController = UINavigationController(
rootViewController: homeViewController
)

let meetingListNavigationController = UINavigationController(rootViewController: meetingListViewController).then {
$0.navigationBar.topItem?.backButtonDisplayMode = .minimal
$0.navigationBar.tintColor = .black
}
let meetingListNavigationController = UINavigationController(
rootViewController: meetingListViewController
)

let myPageViewNavigationController = UINavigationController(rootViewController: myPageViewController).then {
$0.navigationBar.topItem?.backButtonDisplayMode = .minimal
$0.navigationBar.tintColor = .black
}
let myPageViewNavigationController = UINavigationController(
rootViewController: myPageViewController
)

setViewControllers([
homeNavigationController,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,9 @@ class InviteCodeViewController: BaseViewController {

@objc private func nextButtonTapped() {
// TODO: 서버 연결할 때 데이터 바인딩해서 화면 전환 시키기
let promiseViewController = BasePromiseViewController()
let basePromiseViewController = PagePromiseViewController()

promiseViewController.modalPresentationStyle = .fullScreen

navigationController?.pushViewController(promiseViewController, animated: true)
navigationController?.pushViewController(basePromiseViewController, animated: true)
}

@objc private func textFieldDidChange(_ textField: UITextField) {
Expand Down
2 changes: 1 addition & 1 deletion KkuMulKum/Source/MeetingList/View/MeetingListView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ final class MeetingListView: BaseView {
$0.setText("꾸물리안이 가입한 모임은\n총 3개예요!", style: .head01, color: .gray8)
}

private let addButton = UIButton().then {
let addButton = UIButton().then {
$0.backgroundColor = .green2
$0.layer.cornerRadius = 8
}
Expand Down
Loading

0 comments on commit 9649454

Please sign in to comment.