
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: { ..

UIKit 버전 보러가기 import SwiftUI// 팝오버struct ContentView: View { @State private var showPopover = false var body: some View { Button("Popover") { showPopover.toggle() } .popover(isPresented: $showPopover) { PopoverView() .presentationCompactAdaptation(.popover) } }}struct PopoverView: View { var body: some View { ..
- Total
- Today
- Yesterday
- 프로그레스
- permission
- 인디케이터
- presentationcompactadaptation
- Language
- TabView
- 스위프트
- custom segment
- swiftUI
- 심사
- SWIFT
- AppStore
- SKPayment
- indicator
- 테이블뷰
- picker
- 엑스코드
- localizing
- Xcode
- 리젝
- 로컬라이징
- Reject
- 현지화
- TabBar
- 다국어
- localizable
- 아이오에스
- SKProductsRequestDelegate
- Authorization
- ios
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |