@momo-kits/native-kits 0.162.2-debug → 0.162.2-sp.1-debug

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (149) hide show
  1. package/.claude/settings.local.json +55 -0
  2. package/compose/build.gradle.kts +1 -1
  3. package/compose/compose.podspec +1 -1
  4. package/gradle.properties +1 -1
  5. package/ios/Application/Components.swift +34 -43
  6. package/ios/Application/FloatingButton.swift +10 -8
  7. package/ios/Application/Navigation/BottomTab/BottomTab.swift +102 -0
  8. package/ios/Application/Navigation/BottomTab/BottomTabBar.swift +215 -0
  9. package/ios/Application/Navigation/BottomTab/CurvedContainer.swift +65 -0
  10. package/ios/Application/Navigation/HeaderBackProps.swift +66 -0
  11. package/ios/Application/Navigation/HeaderTitle.swift +57 -0
  12. package/ios/Application/Navigation/HeaderUser.swift +209 -0
  13. package/ios/Application/Navigation/NavigationContainer.swift +151 -0
  14. package/ios/Application/Navigation/NavigationOptions.swift +109 -0
  15. package/ios/Application/Navigation/Navigator.swift +360 -0
  16. package/ios/Application/Navigation/Overplay/BottomSheet.swift +176 -0
  17. package/ios/Application/Navigation/Overplay/ModalScreen.swift +68 -0
  18. package/ios/Application/Navigation/Overplay/SnackBar.swift +144 -0
  19. package/ios/Application/Navigation/component/Header.swift +178 -0
  20. package/ios/Application/Navigation/component/HeaderBackground.swift +83 -0
  21. package/ios/Application/Navigation/component/HeaderColor.swift +65 -0
  22. package/ios/Application/StackScreen.swift +449 -0
  23. package/ios/Avatar/Avatar.swift +193 -0
  24. package/ios/Badge/Badge.swift +11 -13
  25. package/ios/Badge/BadgeRibbon.swift +12 -19
  26. package/ios/BaselineView/BaselineView.swift +163 -0
  27. package/ios/Button/Button.swift +62 -23
  28. package/ios/Carousel/Carousel.swift +181 -0
  29. package/ios/Checkbox/Checkbox.swift +14 -12
  30. package/ios/Chip/Chip.swift +23 -9
  31. package/ios/Collapse/Collapse.swift +182 -0
  32. package/ios/Colors+Radius+Spacing/Colors.swift +1 -1
  33. package/ios/Colors+Radius+Spacing/Theme.swift +295 -0
  34. package/ios/DateTimePicker/DateTimePicker.swift +210 -0
  35. package/ios/DateTimePicker/DateTimePickerTypes.swift +55 -0
  36. package/ios/DateTimePicker/DateTimePickerUtils.swift +167 -0
  37. package/ios/DateTimePicker/WheelPicker.swift +161 -0
  38. package/ios/Divider/Divider.swift +16 -0
  39. package/ios/Icon/Icon.swift +6 -1
  40. package/ios/IconButton/IconButton.swift +112 -0
  41. package/ios/Information/Information.swift +151 -0
  42. package/ios/Input/Input.swift +42 -25
  43. package/ios/Input/InputPhoneNumber.swift +21 -19
  44. package/ios/Input/InputSearch.swift +101 -45
  45. package/ios/Input/InputTextArea.swift +67 -40
  46. package/ios/InputDropDown/InputDropDown.swift +198 -0
  47. package/ios/InputMoney/InputMoney.swift +335 -0
  48. package/ios/InputOTP/InputOTP.swift +210 -0
  49. package/ios/Loader/Loader.swift +113 -0
  50. package/ios/MoMoUIKits.podspec +5 -0
  51. package/ios/OTPKeyboard/KeyboardButton.swift +1 -1
  52. package/ios/Pagination/PaginationDot.swift +61 -0
  53. package/ios/Pagination/PaginationNumber.swift +35 -0
  54. package/ios/Pagination/PaginationScroll.swift +101 -0
  55. package/ios/Pagination/PaginationWhiteDot.swift +37 -0
  56. package/ios/Popup/PopupDisplay.swift +10 -12
  57. package/ios/Popup/PopupInput.swift +2 -6
  58. package/ios/Popup/PopupNotify.swift +219 -0
  59. package/ios/ProgressInfo/ProgressInfo.swift +294 -0
  60. package/ios/Radio/Radio.swift +70 -0
  61. package/ios/Rating/Rating.swift +82 -0
  62. package/ios/Skeleton/Skeleton.swift +99 -0
  63. package/ios/Slider/Slider.swift +237 -0
  64. package/ios/Stepper/Stepper.swift +220 -0
  65. package/ios/Steps/Steps.swift +451 -0
  66. package/ios/SuggestAction/SuggestAction.swift +97 -0
  67. package/ios/Swipeable/SwipeCell.swift +185 -0
  68. package/ios/Swipeable/SwipeCellModel.swift +21 -0
  69. package/ios/TabView/TabView.swift +530 -0
  70. package/ios/Tag/Tag.swift +98 -0
  71. package/ios/Template/TrustBanner/TrustBanner.swift +2 -0
  72. package/ios/Title/Title.swift +269 -0
  73. package/ios/Tooltip/Tooltip.swift +482 -0
  74. package/ios/Typography/Text.swift +77 -5
  75. package/ios/Typography/Typography.swift +9 -0
  76. package/ios/Uploader/Uploader.swift +183 -0
  77. package/ios/native-kits.podspec +58 -8
  78. package/ios-demo/MoMoUIKitsDemo.podspec +18 -0
  79. package/ios-demo/README.md +120 -0
  80. package/ios-demo/Resources/dot_loading.json +558 -0
  81. package/ios-demo/Resources/icon.json +4052 -0
  82. package/ios-demo/Resources/lottie_circle_loader.json +1 -0
  83. package/ios-demo/Sources/MoMoUIKitsDemo/DemoScaffold.swift +48 -0
  84. package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsBadgeDemoView.swift +25 -0
  85. package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsButtonDemoView.swift +26 -0
  86. package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsCheckboxDemoView.swift +19 -0
  87. package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsChipDemoView.swift +33 -0
  88. package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsInputDemoView.swift +48 -0
  89. package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsPopupDemoView.swift +21 -0
  90. package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsRadioDemoView.swift +17 -0
  91. package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsTypographyDemoView.swift +28 -0
  92. package/ios-demo/Sources/MoMoUIKitsDemo/MoMoUIKitsDemoContext.swift +31 -0
  93. package/ios-demo/Sources/MoMoUIKitsDemo/MoMoUIKitsDemoFactory.swift +72 -0
  94. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/AnimatedHeaderDemo.swift +110 -0
  95. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/AvatarDemo.swift +93 -0
  96. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/BadgeDemo.swift +269 -0
  97. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/BaselineView.swift +117 -0
  98. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/BottomTabDemo.swift +89 -0
  99. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ButtonDemo.swift +100 -0
  100. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/CarouselDemo.swift +126 -0
  101. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/CheckboxDemo.swift +63 -0
  102. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ChipDemo.swift +20 -0
  103. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/CollapseDemo.swift +93 -0
  104. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ContentView.swift +107 -0
  105. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/DateTimePickerDemo.swift +124 -0
  106. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/DividerDemo.swift +14 -0
  107. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/HeaderUserDemo.swift +49 -0
  108. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/Home.swift +261 -0
  109. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/IconButtonDemo.swift +58 -0
  110. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ImageDemo.swift +78 -0
  111. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InformationDemo.swift +138 -0
  112. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputDemo.swift +111 -0
  113. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputDropDownDemo.swift +136 -0
  114. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputMoneyDemo.swift +107 -0
  115. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputOTPDemo.swift +73 -0
  116. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputPhoneNumberDemo.swift +100 -0
  117. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputSearchDemo.swift +32 -0
  118. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputTextAreaDemo.swift +57 -0
  119. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/LoaderDemo.swift +70 -0
  120. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/NavigationDemo.swift +227 -0
  121. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/PaginationDemo.swift +72 -0
  122. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/PopupDisplayDemo.swift +175 -0
  123. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/PopupNotifyDemo.swift +121 -0
  124. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/PopupPromotionDemo.swift +76 -0
  125. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ProgressInfoDemo.swift +89 -0
  126. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/RadioDemo.swift +32 -0
  127. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/RatingDemo.swift +56 -0
  128. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SkeletonDemo.swift +32 -0
  129. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SliderDemo.swift +150 -0
  130. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SnackBarDemo.swift +138 -0
  131. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/StepperDemo.swift +103 -0
  132. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/StepsDemo.swift +94 -0
  133. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SuggestActionDemo.swift +79 -0
  134. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SwipeDemo.swift +152 -0
  135. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SwitchDemo.swift +33 -0
  136. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TabViewDemo.swift +190 -0
  137. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TagDemo.swift +34 -0
  138. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ThemeDemo.swift +182 -0
  139. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TitleDemo.swift +109 -0
  140. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TooltipDemo.swift +187 -0
  141. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TypographyDemo.swift +87 -0
  142. package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/UploaderDemo.swift +131 -0
  143. package/ios-demo/Sources/MoMoUIKitsDemo/SwiftUIDemoBrowserView.swift +50 -0
  144. package/ios-demo/Sources/MoMoUIKitsDemo/UIKitsDemoModels.swift +15 -0
  145. package/ios-demo/Sources/MoMoUIKitsDemo/UIKitsDemoRegistry.swift +73 -0
  146. package/local.properties +8 -0
  147. package/package.json +1 -1
  148. package/publish.sh +50 -0
  149. package/scripts/gen-ios-color.mjs +136 -0
@@ -0,0 +1,144 @@
1
+ //
2
+ // SnackBar.swift
3
+ // MoMoUIKits
4
+ //
5
+ // SwiftUI mirror of Compose's `SnackBar` (navigation/component/SnackBar.kt).
6
+ // A snack bar slides up from the bottom (just above the footer / home
7
+ // indicator), stays for `duration`, then slides back down and is removed.
8
+ // `Navigator.showSnackBar(_:)` drives it through the overplay host.
9
+ //
10
+
11
+ import Foundation
12
+ import SwiftUI
13
+
14
+ // MARK: - SnackBar model
15
+
16
+ /// Mirrors Compose's `sealed class SnackBar` (Custom / Toast). A `nil` duration
17
+ /// keeps the snack bar on screen until dismissed manually.
18
+ public struct SnackBar {
19
+ public enum Style {
20
+ case custom
21
+ case toast
22
+ }
23
+
24
+ public let style: Style
25
+ public let duration: TimeInterval?
26
+ public let content: (() -> AnyView)?
27
+
28
+ private init(style: Style, duration: TimeInterval?, content: (() -> AnyView)?) {
29
+ self.style = style
30
+ self.duration = duration
31
+ self.content = content
32
+ }
33
+
34
+ /// Mirrors `SnackBar.Custom`: renders arbitrary content.
35
+ public static func custom<V: View>(
36
+ duration: TimeInterval? = 3.0,
37
+ @ViewBuilder content: @escaping () -> V
38
+ ) -> SnackBar {
39
+ SnackBar(style: .custom, duration: duration, content: { AnyView(content()) })
40
+ }
41
+
42
+ /// Mirrors `SnackBar.Toast`: a placeholder with no custom content (parity with
43
+ /// Compose where `Toast` currently renders nothing).
44
+ public static func toast(duration: TimeInterval? = 3.0) -> SnackBar {
45
+ SnackBar(style: .toast, duration: duration, content: nil)
46
+ }
47
+ }
48
+
49
+ // MARK: - SnackBar host view
50
+
51
+ /// Self-animating container. Slides the content up on appear, schedules an
52
+ /// auto-dismiss after `duration`, and animates out before removing the overplay.
53
+ @available(iOS 16.0, *)
54
+ struct SnackBarView: View {
55
+ let snackBar: SnackBar
56
+ /// Bottom inset so the bar sits above the footer / home indicator
57
+ /// (mirrors Compose's `footerHeight` offset).
58
+ let bottomInset: CGFloat
59
+
60
+ @EnvironmentObject private var navigator: Navigator
61
+
62
+ @State private var contentHeight: CGFloat = 0
63
+ @State private var offsetY: CGFloat = 0
64
+ @State private var didAppear = false
65
+ @State private var isClosing = false
66
+ @State private var autoDismissWorkItem: DispatchWorkItem?
67
+
68
+ var body: some View {
69
+ VStack(spacing: 0) {
70
+ Spacer(minLength: 0)
71
+ content
72
+ .background(
73
+ GeometryReader { geo in
74
+ Color.clear.onAppear { contentHeight = geo.size.height }
75
+ }
76
+ )
77
+ .offset(y: offsetY)
78
+ .padding(.bottom, bottomInset)
79
+ }
80
+ .frame(maxWidth: .infinity, maxHeight: .infinity)
81
+ .onAppear {
82
+ guard !didAppear else { return }
83
+ didAppear = true
84
+ offsetY = max(contentHeight, 200) + bottomInset
85
+ open()
86
+ registerClose()
87
+ scheduleAutoDismiss()
88
+ }
89
+ .onDisappear {
90
+ autoDismissWorkItem?.cancel()
91
+ autoDismissWorkItem = nil
92
+ }
93
+ }
94
+
95
+ @ViewBuilder
96
+ private var content: some View {
97
+ switch snackBar.style {
98
+ case .custom:
99
+ snackBar.content?()
100
+ case .toast:
101
+ EmptyView()
102
+ }
103
+ }
104
+
105
+ // Mirrors Compose's `openEvent`: 350ms slide up.
106
+ private func open() {
107
+ DispatchQueue.main.async {
108
+ withAnimation(.easeOut(duration: 0.35)) {
109
+ offsetY = 0
110
+ }
111
+ }
112
+ }
113
+
114
+ // Animated slide down, then remove (mirrors Compose's `closeEvent`/`hideSnackBar`).
115
+ private func close() {
116
+ guard !isClosing else { return }
117
+ isClosing = true
118
+ autoDismissWorkItem?.cancel()
119
+ autoDismissWorkItem = nil
120
+
121
+ withAnimation(.easeIn(duration: 0.2)) {
122
+ offsetY = max(contentHeight, 200) + bottomInset
123
+ }
124
+ DispatchQueue.main.asyncAfter(deadline: .now() + 0.2) {
125
+ navigator.finishOverplayDismiss()
126
+ }
127
+ }
128
+
129
+ private func registerClose() {
130
+ navigator.registerOverplayDismiss { close() }
131
+ }
132
+
133
+ private func scheduleAutoDismiss() {
134
+ guard let duration = snackBar.duration else { return }
135
+ let workItem = DispatchWorkItem {
136
+ // Only auto-dismiss if this snack bar is still the active overplay.
137
+ if navigator.overplay?.type == .snackBar {
138
+ navigator.hideSnackBar()
139
+ }
140
+ }
141
+ autoDismissWorkItem = workItem
142
+ DispatchQueue.main.asyncAfter(deadline: .now() + duration, execute: workItem)
143
+ }
144
+ }
@@ -0,0 +1,178 @@
1
+ //
2
+ // Header.swift
3
+ // MoMoUIKits
4
+ //
5
+ // SwiftUI mirror of Compose's `Header` (navigation/component/Header.kt).
6
+ // Renders the 52pt header bar: a circular back button (colors resolved via
7
+ // `getHeaderColor`), the title area (`HeaderContent` → plain title, user title
8
+ // or inline search), the header-right toolkit, and a scroll-triggered bottom
9
+ // shadow. The header band background itself is painted by `HeaderBackground`.
10
+ //
11
+ // Named `NavigationHeader` to coexist with the legacy `Header` in
12
+ // `Components.swift` (kept as-is, used as a package elsewhere; to be marked
13
+ // deprecated later). Used by the new `StackScreen` navigation path.
14
+ //
15
+
16
+ import SwiftUI
17
+
18
+ public struct NavigationHeader: View {
19
+ var headerType: HeaderType = .default
20
+ var titlePosition: TitlePosition
21
+ var title: String
22
+ /// Optional rich title (mirrors Compose's `HeaderTitle`); `.user` renders an
23
+ /// avatar group, `.default`/nil renders plain `title`.
24
+ var headerTitle: HeaderTitle?
25
+ var headerRight: (() -> any View)? = { HeaderRight() }
26
+ var goBack: (() -> Void)?
27
+ var opacity: CGFloat = 1
28
+ var animatedHeader: AnimatedHeader?
29
+ var scrollState: CGFloat = 0
30
+ var inputSearchProps: InputSearchProps?
31
+ var tintColor: Color?
32
+ /// Title opacity; used by the animated search header to fade the title out on scroll.
33
+ var titleOpacity: CGFloat = 1
34
+
35
+ public init(
36
+ headerType: HeaderType = .default,
37
+ titlePosition: TitlePosition,
38
+ title: String,
39
+ headerTitle: HeaderTitle? = nil,
40
+ headerRight: (() -> any View)? = { HeaderRight() },
41
+ goBack: (() -> Void)? = nil,
42
+ opacity: CGFloat = 1,
43
+ animatedHeader: AnimatedHeader? = nil,
44
+ scrollState: CGFloat = 0,
45
+ inputSearchProps: InputSearchProps? = nil,
46
+ tintColor: Color? = nil,
47
+ titleOpacity: CGFloat = 1
48
+ ) {
49
+ self.headerType = headerType
50
+ self.titlePosition = titlePosition
51
+ self.title = title
52
+ self.headerTitle = headerTitle
53
+ self.headerRight = headerRight
54
+ self.goBack = goBack
55
+ self.opacity = opacity
56
+ self.animatedHeader = animatedHeader
57
+ self.scrollState = scrollState
58
+ self.inputSearchProps = inputSearchProps
59
+ self.tintColor = tintColor
60
+ self.titleOpacity = titleOpacity
61
+ }
62
+
63
+ private var isAnimated: Bool { animatedHeader != nil }
64
+ private var isSurface: Bool { animatedHeader?.isSurface ?? true }
65
+
66
+ private var headerColor: HeaderColor {
67
+ getHeaderColor(isAnimated: isAnimated, isSurface: isSurface, opacity: opacity, tintColor: tintColor)
68
+ }
69
+
70
+ /// Centered title needs a full-width overlay to stay screen-centered, not
71
+ /// boxed between the back button and the header-right (mirrors Compose).
72
+ private var centerTitle: Bool {
73
+ guard inputSearchProps == nil else { return false }
74
+ let isDefault = headerTitle == nil || headerTitle?.defaultTitle != nil
75
+ return titlePosition == .center && isDefault
76
+ }
77
+
78
+ public var body: some View {
79
+ if headerType != .none {
80
+ ZStack {
81
+ HStack(spacing: 0) {
82
+ if let goBack {
83
+ BackButton(color: headerColor, onBack: goBack)
84
+ Spacer().frame(width: Spacing.S)
85
+ }
86
+
87
+ if centerTitle {
88
+ Spacer()
89
+ } else {
90
+ titleArea(centered: false)
91
+ .frame(maxWidth: .infinity, alignment: .leading)
92
+ }
93
+
94
+ if let headerRight {
95
+ AnyView(headerRight())
96
+ .background(
97
+ GeometryReader { geo in
98
+ Color.clear.preference(key: HeaderRightWidthKey.self, value: geo.size.width)
99
+ }
100
+ )
101
+ }
102
+ }
103
+ .padding(.horizontal, Spacing.M)
104
+
105
+ if centerTitle {
106
+ titleArea(centered: true)
107
+ .padding(.horizontal, Spacing.M)
108
+ }
109
+ }
110
+ .frame(height: HEADER_HEIGHT)
111
+ .overlay(alignment: .bottom) { VerticalShadow(opacity: opacity) }
112
+ }
113
+ }
114
+
115
+ /// Mirrors Compose's `HeaderContent`: plain title, user title, or — when a
116
+ /// header search is active — the inline search field.
117
+ @ViewBuilder
118
+ private func titleArea(centered: Bool) -> some View {
119
+ if let inputSearchProps {
120
+ InputSearch(props: inputSearchProps)
121
+ } else if case let .user(userData)? = headerTitle {
122
+ if #available(iOS 16.0, *) {
123
+ HeaderUserView(userData)
124
+ }
125
+ } else {
126
+ MomoText(
127
+ headerTitle?.defaultTitle ?? title,
128
+ typography: .actionSBold,
129
+ color: headerColor.tintIconColor,
130
+ textAlign: centered ? .center : .leading,
131
+ maxLines: 1
132
+ )
133
+ .opacity(titleOpacity)
134
+ .truncationMode(.tail)
135
+ .frame(maxWidth: centered ? .infinity : nil, alignment: centered ? .center : .leading)
136
+ }
137
+ }
138
+ }
139
+
140
+ // MARK: - Back button
141
+
142
+ /// Mirrors Compose's `BackButton`: a 28pt circular control with the back arrow.
143
+ private struct BackButton: View {
144
+ let color: HeaderColor
145
+ let onBack: () -> Void
146
+
147
+ var body: some View {
148
+ SwiftUI.Button(action: onBack) {
149
+ Circle()
150
+ .fill(color.backgroundButton)
151
+ .overlay(Circle().stroke(color.borderColor, lineWidth: 0.2))
152
+ .frame(width: 28, height: 28)
153
+ .overlay(Icon(source: "arrow-back", size: 20, color: color.tintIconColor))
154
+ }
155
+ .buttonStyle(.plain)
156
+ }
157
+ }
158
+
159
+ // MARK: - Vertical shadow
160
+
161
+ /// Mirrors Compose's `VerticalShadow`: a 6pt drop shadow under the header that
162
+ /// only appears once the header is fully opaque (scrolled).
163
+ private struct VerticalShadow: View {
164
+ let opacity: CGFloat
165
+
166
+ var body: some View {
167
+ if opacity >= 1 {
168
+ LinearGradient(
169
+ gradient: Gradient(colors: [Color.black.opacity(0.05), .clear]),
170
+ startPoint: .top,
171
+ endPoint: .bottom
172
+ )
173
+ .frame(height: 6)
174
+ .frame(maxWidth: .infinity)
175
+ .offset(y: 6)
176
+ }
177
+ }
178
+ }
@@ -0,0 +1,83 @@
1
+ //
2
+ // HeaderBackground.swift
3
+ // MoMoUIKits
4
+ //
5
+ // SwiftUI mirror of Compose's `HeaderBackground` (navigation/component/HeaderBackground.kt).
6
+ // Paints the header band behind the `Header`: a flat surface for `.default`,
7
+ // the taller pink gradient for `.extended`, fading out as the screen scrolls.
8
+ // Stays transparent when the header is transparent or the content is full-screen.
9
+ //
10
+ // Named `NavigationHeaderBackground` to coexist with the legacy
11
+ // `HeaderBackground` in `Components.swift` (kept as-is, used as a package
12
+ // elsewhere; to be marked deprecated later). Used by the new `StackScreen`.
13
+ //
14
+
15
+ import SwiftUI
16
+
17
+ public struct NavigationHeaderBackground: View {
18
+ var headerType: HeaderType = .default
19
+ var scrollState: CGFloat
20
+ var headerTransparent: Bool = false
21
+ var fullScreenContent: Bool = false
22
+
23
+ public init(
24
+ headerType: HeaderType = .default,
25
+ scrollState: CGFloat = 0,
26
+ headerTransparent: Bool = false,
27
+ fullScreenContent: Bool = false
28
+ ) {
29
+ self.headerType = headerType
30
+ self.scrollState = scrollState
31
+ self.headerTransparent = headerTransparent
32
+ self.fullScreenContent = fullScreenContent
33
+ }
34
+
35
+ private func pinkGradient(topColor: Color, bottomColor: Color) -> LinearGradient {
36
+ LinearGradient(
37
+ gradient: Gradient(colors: [
38
+ topColor,
39
+ bottomColor
40
+ ]),
41
+ startPoint: .top,
42
+ endPoint: .bottom
43
+ )
44
+ }
45
+
46
+ public var body: some View {
47
+ let statusBarHeight = safeAreaTopInset()
48
+ let opacity = max(0, 1 - scrollState / CGFloat(HEADER_HEIGHT))
49
+ let minHeight = fullScreenContent ? 0 : statusBarHeight + HEADER_HEIGHT
50
+ let maxHeight: CGFloat = 154
51
+ let backgroundColor = headerTransparent ? Color.clear : Colors.black01
52
+ let topColor = opacity == 0 ? backgroundColor : Color(hex: 0xFDCADE)
53
+
54
+ Group {
55
+ switch headerType {
56
+ case .default:
57
+ ZStack(alignment: .bottom) {
58
+ backgroundColor
59
+ .frame(height: minHeight)
60
+ if !headerTransparent {
61
+ pinkGradient(topColor: topColor, bottomColor: backgroundColor)
62
+ .frame(height: maxHeight)
63
+ .frame(height: minHeight, alignment: .top)
64
+ .clipped()
65
+ }
66
+ }
67
+
68
+ case .extended:
69
+ ZStack {
70
+ if !headerTransparent {
71
+ backgroundColor
72
+ .frame(height: maxHeight)
73
+ pinkGradient(topColor: topColor, bottomColor: backgroundColor)
74
+ .frame(height: maxHeight)
75
+ }
76
+ }
77
+
78
+ case .none:
79
+ EmptyView()
80
+ }
81
+ }
82
+ }
83
+ }
@@ -0,0 +1,65 @@
1
+ //
2
+ // HeaderColor.swift
3
+ // MoMoUIKits
4
+ //
5
+ // SwiftUI mirror of Compose's `HeaderColor` + `getHeaderColor`
6
+ // (navigation/component/Header.kt). Resolves the back-button / control colors
7
+ // for the header based on whether it sits over an animated (image) header and
8
+ // how far the screen has scrolled.
9
+ //
10
+
11
+ import SwiftUI
12
+
13
+ /// Header band height, mirrors Compose's `HEADER_HEIGHT`.
14
+ public let HEADER_HEIGHT: CGFloat = 52
15
+
16
+ /// Mirrors Compose's `enum InputSearchType`.
17
+ enum NavInputSearchType {
18
+ case none, header, animated
19
+ }
20
+
21
+ /// Mirrors Compose's `HeaderColor`.
22
+ public struct HeaderColor {
23
+ public let tintIconColor: Color
24
+ public let backgroundButton: Color
25
+ public let borderColor: Color
26
+ }
27
+
28
+ /// Mirrors Compose's `getHeaderColor`. On iOS the "animated" header is expressed
29
+ /// via a non-nil `animatedHeader`, so we pass `isAnimated`/`isSurface` instead of
30
+ /// the Compose `HeaderType.Animated` case.
31
+ func getHeaderColor(
32
+ isAnimated: Bool,
33
+ isSurface: Bool,
34
+ opacity: CGFloat,
35
+ tintColor: Color?,
36
+ defaultColor: Color = Colors.black17
37
+ ) -> HeaderColor {
38
+ if isAnimated {
39
+ if opacity >= 1 || !isSurface {
40
+ return HeaderColor(
41
+ tintIconColor: Colors.black17,
42
+ backgroundButton: Colors.black01.opacity(0.6),
43
+ borderColor: Colors.black20.opacity(0.2)
44
+ )
45
+ }
46
+ return HeaderColor(
47
+ tintIconColor: Colors.black01,
48
+ backgroundButton: Colors.black20.opacity(0.6),
49
+ borderColor: .clear
50
+ )
51
+ }
52
+
53
+ if tintColor == Colors.black01 {
54
+ return HeaderColor(
55
+ tintIconColor: Colors.black01,
56
+ backgroundButton: Colors.black20.opacity(0.6),
57
+ borderColor: Colors.black01.opacity(0.2)
58
+ )
59
+ }
60
+ return HeaderColor(
61
+ tintIconColor: tintColor ?? defaultColor,
62
+ backgroundButton: Colors.black01.opacity(0.6),
63
+ borderColor: Colors.black20.opacity(0.2)
64
+ )
65
+ }