// https://stackademic.com/blog/swiftui-dropdown-menu-3-ways-picker-menu-and-custom-from-scratch/// 드롭다운 메뉴struct DropDownMenu: View { let placeholder: String let options: [String] var menuWdith: CGFloat? = 150 var buttonHeight: CGFloat = 50 var maxItemDisplayed: Int = 3 @Binding var selectedOptionIndex: Int? @Binding var showDropdown: Bool @State private ..
import SwiftUI/// 커스텀 세그먼트 뷰 (컨텐츠 크기만큼 동적 너비 버전)struct SegmentedFlexibleView: View { let segments: [String] @Binding var currentPage: Int @Namespace private var name var body: some View { ScrollViewReader { proxy in ScrollView(.horizontal, showsIndicators: false) { HStack(spacing: 0) { ForEach(segments.indices, id: \.self) {..
import SwiftUI/// 커스텀 세그먼트 뷰 (가로 꽉 채우는 고정 너비 버전)struct SegmentedFixedView: View { let segments: [String] @Binding var currentPage: Int @Namespace private var name var body: some View { HStack(spacing: 0) { ForEach(segments.indices, id: \.self) { index in Button { currentPage = index } label: { ..
- Total
- Today
- Yesterday
- 프로그레스
- localizing
- Reject
- 엑스코드
- Infinite Carousel
- indicator
- TabBar
- custom segment
- picker
- permission
- 테이블뷰
- TabView
- 인디케이터
- Xcode
- ios
- 현지화
- SWIFT
- 리젝
- Language
- 다국어
- presentationcompactadaptation
- 스위프트
- 로컬라이징
- 아이오에스
- swiftUI
- localizable
- Authorization
- AppStore
- SKPayment
- 심사
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 |