@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.
- package/.claude/settings.local.json +55 -0
- package/compose/build.gradle.kts +1 -1
- package/compose/compose.podspec +1 -1
- package/gradle.properties +1 -1
- package/ios/Application/Components.swift +34 -43
- package/ios/Application/FloatingButton.swift +10 -8
- package/ios/Application/Navigation/BottomTab/BottomTab.swift +102 -0
- package/ios/Application/Navigation/BottomTab/BottomTabBar.swift +215 -0
- package/ios/Application/Navigation/BottomTab/CurvedContainer.swift +65 -0
- package/ios/Application/Navigation/HeaderBackProps.swift +66 -0
- package/ios/Application/Navigation/HeaderTitle.swift +57 -0
- package/ios/Application/Navigation/HeaderUser.swift +209 -0
- package/ios/Application/Navigation/NavigationContainer.swift +151 -0
- package/ios/Application/Navigation/NavigationOptions.swift +109 -0
- package/ios/Application/Navigation/Navigator.swift +360 -0
- package/ios/Application/Navigation/Overplay/BottomSheet.swift +176 -0
- package/ios/Application/Navigation/Overplay/ModalScreen.swift +68 -0
- package/ios/Application/Navigation/Overplay/SnackBar.swift +144 -0
- package/ios/Application/Navigation/component/Header.swift +178 -0
- package/ios/Application/Navigation/component/HeaderBackground.swift +83 -0
- package/ios/Application/Navigation/component/HeaderColor.swift +65 -0
- package/ios/Application/StackScreen.swift +449 -0
- package/ios/Avatar/Avatar.swift +193 -0
- package/ios/Badge/Badge.swift +11 -13
- package/ios/Badge/BadgeRibbon.swift +12 -19
- package/ios/BaselineView/BaselineView.swift +163 -0
- package/ios/Button/Button.swift +62 -23
- package/ios/Carousel/Carousel.swift +181 -0
- package/ios/Checkbox/Checkbox.swift +14 -12
- package/ios/Chip/Chip.swift +23 -9
- package/ios/Collapse/Collapse.swift +182 -0
- package/ios/Colors+Radius+Spacing/Colors.swift +1 -1
- package/ios/Colors+Radius+Spacing/Theme.swift +295 -0
- package/ios/DateTimePicker/DateTimePicker.swift +210 -0
- package/ios/DateTimePicker/DateTimePickerTypes.swift +55 -0
- package/ios/DateTimePicker/DateTimePickerUtils.swift +167 -0
- package/ios/DateTimePicker/WheelPicker.swift +161 -0
- package/ios/Divider/Divider.swift +16 -0
- package/ios/Icon/Icon.swift +6 -1
- package/ios/IconButton/IconButton.swift +112 -0
- package/ios/Information/Information.swift +151 -0
- package/ios/Input/Input.swift +42 -25
- package/ios/Input/InputPhoneNumber.swift +21 -19
- package/ios/Input/InputSearch.swift +101 -45
- package/ios/Input/InputTextArea.swift +67 -40
- package/ios/InputDropDown/InputDropDown.swift +198 -0
- package/ios/InputMoney/InputMoney.swift +335 -0
- package/ios/InputOTP/InputOTP.swift +210 -0
- package/ios/Loader/Loader.swift +113 -0
- package/ios/MoMoUIKits.podspec +5 -0
- package/ios/OTPKeyboard/KeyboardButton.swift +1 -1
- package/ios/Pagination/PaginationDot.swift +61 -0
- package/ios/Pagination/PaginationNumber.swift +35 -0
- package/ios/Pagination/PaginationScroll.swift +101 -0
- package/ios/Pagination/PaginationWhiteDot.swift +37 -0
- package/ios/Popup/PopupDisplay.swift +10 -12
- package/ios/Popup/PopupInput.swift +2 -6
- package/ios/Popup/PopupNotify.swift +219 -0
- package/ios/ProgressInfo/ProgressInfo.swift +294 -0
- package/ios/Radio/Radio.swift +70 -0
- package/ios/Rating/Rating.swift +82 -0
- package/ios/Skeleton/Skeleton.swift +99 -0
- package/ios/Slider/Slider.swift +237 -0
- package/ios/Stepper/Stepper.swift +220 -0
- package/ios/Steps/Steps.swift +451 -0
- package/ios/SuggestAction/SuggestAction.swift +97 -0
- package/ios/Swipeable/SwipeCell.swift +185 -0
- package/ios/Swipeable/SwipeCellModel.swift +21 -0
- package/ios/TabView/TabView.swift +530 -0
- package/ios/Tag/Tag.swift +98 -0
- package/ios/Template/TrustBanner/TrustBanner.swift +2 -0
- package/ios/Title/Title.swift +269 -0
- package/ios/Tooltip/Tooltip.swift +482 -0
- package/ios/Typography/Text.swift +77 -5
- package/ios/Typography/Typography.swift +9 -0
- package/ios/Uploader/Uploader.swift +183 -0
- package/ios/native-kits.podspec +58 -8
- package/ios-demo/MoMoUIKitsDemo.podspec +18 -0
- package/ios-demo/README.md +120 -0
- package/ios-demo/Resources/dot_loading.json +558 -0
- package/ios-demo/Resources/icon.json +4052 -0
- package/ios-demo/Resources/lottie_circle_loader.json +1 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/DemoScaffold.swift +48 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsBadgeDemoView.swift +25 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsButtonDemoView.swift +26 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsCheckboxDemoView.swift +19 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsChipDemoView.swift +33 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsInputDemoView.swift +48 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsPopupDemoView.swift +21 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsRadioDemoView.swift +17 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/Demos/UIKitsTypographyDemoView.swift +28 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/MoMoUIKitsDemoContext.swift +31 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/MoMoUIKitsDemoFactory.swift +72 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/AnimatedHeaderDemo.swift +110 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/AvatarDemo.swift +93 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/BadgeDemo.swift +269 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/BaselineView.swift +117 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/BottomTabDemo.swift +89 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ButtonDemo.swift +100 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/CarouselDemo.swift +126 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/CheckboxDemo.swift +63 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ChipDemo.swift +20 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/CollapseDemo.swift +93 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ContentView.swift +107 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/DateTimePickerDemo.swift +124 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/DividerDemo.swift +14 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/HeaderUserDemo.swift +49 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/Home.swift +261 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/IconButtonDemo.swift +58 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ImageDemo.swift +78 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InformationDemo.swift +138 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputDemo.swift +111 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputDropDownDemo.swift +136 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputMoneyDemo.swift +107 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputOTPDemo.swift +73 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputPhoneNumberDemo.swift +100 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputSearchDemo.swift +32 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputTextAreaDemo.swift +57 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/LoaderDemo.swift +70 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/NavigationDemo.swift +227 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/PaginationDemo.swift +72 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/PopupDisplayDemo.swift +175 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/PopupNotifyDemo.swift +121 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/PopupPromotionDemo.swift +76 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ProgressInfoDemo.swift +89 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/RadioDemo.swift +32 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/RatingDemo.swift +56 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SkeletonDemo.swift +32 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SliderDemo.swift +150 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SnackBarDemo.swift +138 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/StepperDemo.swift +103 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/StepsDemo.swift +94 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SuggestActionDemo.swift +79 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SwipeDemo.swift +152 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SwitchDemo.swift +33 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TabViewDemo.swift +190 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TagDemo.swift +34 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ThemeDemo.swift +182 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TitleDemo.swift +109 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TooltipDemo.swift +187 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TypographyDemo.swift +87 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/UploaderDemo.swift +131 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SwiftUIDemoBrowserView.swift +50 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/UIKitsDemoModels.swift +15 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/UIKitsDemoRegistry.swift +73 -0
- package/local.properties +8 -0
- package/package.json +1 -1
- package/publish.sh +50 -0
- package/scripts/gen-ios-color.mjs +136 -0
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
//
|
|
2
|
+
// CarouselDemo.swift
|
|
3
|
+
// Example
|
|
4
|
+
//
|
|
5
|
+
|
|
6
|
+
import SwiftUI
|
|
7
|
+
import MoMoUIKits
|
|
8
|
+
|
|
9
|
+
struct CarouselDemo: View {
|
|
10
|
+
// MARK: - Playground state
|
|
11
|
+
@State private var loop = false
|
|
12
|
+
@State private var autoplay = false
|
|
13
|
+
@State private var scrollEnabled = true
|
|
14
|
+
@State private var inactiveOpacity: Double = 1.0
|
|
15
|
+
@State private var inactiveScale: Double = 1.0
|
|
16
|
+
|
|
17
|
+
private let slideColors: [Color] = [
|
|
18
|
+
Colors.pink09,
|
|
19
|
+
Colors.blue08,
|
|
20
|
+
Colors.green08,
|
|
21
|
+
Colors.orange08,
|
|
22
|
+
Colors.mint08,
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
var body: some View {
|
|
26
|
+
ScrollView {
|
|
27
|
+
VStack(alignment: .leading, spacing: Spacing.XL) {
|
|
28
|
+
preview
|
|
29
|
+
Divider()
|
|
30
|
+
playground
|
|
31
|
+
}
|
|
32
|
+
.padding(Spacing.L)
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
// MARK: - Preview cases (mirror CarouselUsage.kt)
|
|
37
|
+
private var preview: some View {
|
|
38
|
+
VStack(alignment: .leading, spacing: Spacing.XL) {
|
|
39
|
+
section("Basic (3 slides)") {
|
|
40
|
+
Carousel(itemCount: 3) { index in slide(index) }
|
|
41
|
+
.frame(height: 160)
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
section("Loop enabled") {
|
|
45
|
+
Carousel(itemCount: 5, loop: true) { index in slide(index) }
|
|
46
|
+
.frame(height: 160)
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
section("Autoplay (3s interval)") {
|
|
50
|
+
Carousel(
|
|
51
|
+
itemCount: 5,
|
|
52
|
+
loop: true,
|
|
53
|
+
autoplay: true,
|
|
54
|
+
autoplayInterval: 3.0
|
|
55
|
+
) { index in slide(index) }
|
|
56
|
+
.frame(height: 160)
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
section("Inactive slide effects (opacity=0.5, scale=0.9)") {
|
|
60
|
+
Carousel(
|
|
61
|
+
itemCount: 5,
|
|
62
|
+
loop: true,
|
|
63
|
+
inactiveSlideOpacity: 0.5,
|
|
64
|
+
inactiveSlideScale: 0.9,
|
|
65
|
+
contentPadding: 32
|
|
66
|
+
) { index in slide(index) }
|
|
67
|
+
.frame(height: 160)
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
section("Scroll disabled") {
|
|
71
|
+
Carousel(itemCount: 3, scrollEnabled: false) { index in slide(index) }
|
|
72
|
+
.frame(height: 160)
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
// MARK: - Playground
|
|
78
|
+
private var playground: some View {
|
|
79
|
+
VStack(alignment: .leading, spacing: Spacing.M) {
|
|
80
|
+
Text("Playground").font(.headline)
|
|
81
|
+
|
|
82
|
+
Toggle("Loop", isOn: $loop)
|
|
83
|
+
Toggle("Autoplay", isOn: $autoplay)
|
|
84
|
+
Toggle("Scroll Enabled", isOn: $scrollEnabled)
|
|
85
|
+
|
|
86
|
+
VStack(alignment: .leading) {
|
|
87
|
+
Text("Inactive Opacity: \(String(format: "%.2f", inactiveOpacity))")
|
|
88
|
+
Slider(value: $inactiveOpacity, in: 0 ... 1)
|
|
89
|
+
}
|
|
90
|
+
VStack(alignment: .leading) {
|
|
91
|
+
Text("Inactive Scale: \(String(format: "%.2f", inactiveScale))")
|
|
92
|
+
Slider(value: $inactiveScale, in: 0.5 ... 1)
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
Carousel(
|
|
96
|
+
itemCount: 5,
|
|
97
|
+
loop: loop,
|
|
98
|
+
autoplay: autoplay,
|
|
99
|
+
scrollEnabled: scrollEnabled,
|
|
100
|
+
inactiveSlideOpacity: inactiveOpacity,
|
|
101
|
+
inactiveSlideScale: inactiveScale
|
|
102
|
+
) { index in slide(index) }
|
|
103
|
+
.frame(height: 160)
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
// MARK: - Helpers
|
|
108
|
+
private func section<Content: View>(_ title: String, @ViewBuilder content: () -> Content) -> some View {
|
|
109
|
+
VStack(alignment: .leading, spacing: Spacing.S) {
|
|
110
|
+
Text(title).font(.subheadline).bold()
|
|
111
|
+
content()
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
private func slide(_ index: Int) -> some View {
|
|
116
|
+
ZStack {
|
|
117
|
+
slideColors[index % slideColors.count]
|
|
118
|
+
Text("Slide \(index + 1)")
|
|
119
|
+
.font(.headline)
|
|
120
|
+
.foregroundColor(Colors.black01)
|
|
121
|
+
}
|
|
122
|
+
.frame(maxWidth: .infinity)
|
|
123
|
+
.frame(height: 160)
|
|
124
|
+
.cornerRadius(Radius.M)
|
|
125
|
+
}
|
|
126
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
//
|
|
2
|
+
// CheckBoxDemo.swift
|
|
3
|
+
// Example
|
|
4
|
+
//
|
|
5
|
+
// Created by dung.pham2 on 2/12/24.
|
|
6
|
+
//
|
|
7
|
+
import SwiftUI
|
|
8
|
+
import MoMoUIKits
|
|
9
|
+
|
|
10
|
+
struct CheckboxDemo: View {
|
|
11
|
+
@State private var checked = false
|
|
12
|
+
|
|
13
|
+
var body: some View {
|
|
14
|
+
VStack(alignment: .leading, spacing: 20) {
|
|
15
|
+
// Interactive checkbox
|
|
16
|
+
Checkbox(
|
|
17
|
+
$checked,
|
|
18
|
+
onChange: { _ in checked = !checked },
|
|
19
|
+
title: "Check Box"
|
|
20
|
+
)
|
|
21
|
+
|
|
22
|
+
// Unchecked checkbox
|
|
23
|
+
Checkbox(.constant(false), onChange: { _ in }, title: "Check Box")
|
|
24
|
+
|
|
25
|
+
// Indeterminate checkbox
|
|
26
|
+
Checkbox(
|
|
27
|
+
.constant(true),
|
|
28
|
+
// disabled: (({ _ in }) != 0),
|
|
29
|
+
onChange: { _ in },
|
|
30
|
+
indeterminate: true,
|
|
31
|
+
title: "Indeterminate"
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
// Disabled checkbox
|
|
35
|
+
Checkbox(
|
|
36
|
+
.constant(true),
|
|
37
|
+
disabled: true,
|
|
38
|
+
onChange: { _ in },
|
|
39
|
+
title: "Disable"
|
|
40
|
+
)
|
|
41
|
+
|
|
42
|
+
// Disabled indeterminate checkbox
|
|
43
|
+
Checkbox(
|
|
44
|
+
.constant(true),
|
|
45
|
+
disabled: true,
|
|
46
|
+
onChange: {_ in },
|
|
47
|
+
indeterminate: true,
|
|
48
|
+
title: "Disable checked"
|
|
49
|
+
)
|
|
50
|
+
|
|
51
|
+
// Disabled unchecked checkbox
|
|
52
|
+
Checkbox(
|
|
53
|
+
.constant(false),
|
|
54
|
+
disabled: true,
|
|
55
|
+
onChange: { _ in },
|
|
56
|
+
title: "Disable"
|
|
57
|
+
)
|
|
58
|
+
}
|
|
59
|
+
.padding()
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
import SwiftUI
|
|
3
|
+
import MoMoUIKits
|
|
4
|
+
|
|
5
|
+
struct ChipDemo: View {
|
|
6
|
+
|
|
7
|
+
var body: some View {
|
|
8
|
+
VStack(alignment: .leading, spacing: 8) {
|
|
9
|
+
Chip(label: "Large", size: Chip.ChipSize.large)
|
|
10
|
+
Chip(label: "Small", size: Chip.ChipSize.small)
|
|
11
|
+
Chip(label: "Apple", iconLeft: "basic_home")
|
|
12
|
+
Chip(label: "Banana", iconRight: "basic_home")
|
|
13
|
+
Chip(label: "Orange", backgroundColor: Colors.black01)
|
|
14
|
+
Chip(label: "Grape", selected: true)
|
|
15
|
+
Chip(label: "Grape", iconRight: "basic_home", selected: true, iconRightTint: Colors.black05)
|
|
16
|
+
Chip(label: "Tagged", accessibilityLabel: "chip_tagged")
|
|
17
|
+
}
|
|
18
|
+
.padding()
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import SwiftUI
|
|
2
|
+
import MoMoUIKits
|
|
3
|
+
|
|
4
|
+
struct CollapseDemo: View {
|
|
5
|
+
var body: some View {
|
|
6
|
+
ScrollView {
|
|
7
|
+
VStack(alignment: .leading, spacing: 24) {
|
|
8
|
+
section("Default") {
|
|
9
|
+
Collapse(title: "Default collapse") {
|
|
10
|
+
MomoText("This is the expanded content.", typography: .bodyDefaultRegular)
|
|
11
|
+
.padding(Spacing.M)
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
section("With Border") {
|
|
16
|
+
Collapse(title: "With border", showBorder: true) {
|
|
17
|
+
MomoText("Content inside a bordered collapse.", typography: .bodyDefaultRegular)
|
|
18
|
+
.padding(Spacing.M)
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
section("Expanded by Default") {
|
|
23
|
+
Collapse(title: "Pre-expanded", expandDefault: true) {
|
|
24
|
+
MomoText("This collapse starts expanded.", typography: .bodyDefaultRegular)
|
|
25
|
+
.padding(Spacing.M)
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
section("With Description") {
|
|
30
|
+
Collapse(
|
|
31
|
+
title: "Collapse with description",
|
|
32
|
+
description: "A brief description below the title."
|
|
33
|
+
) {
|
|
34
|
+
MomoText("Detailed content.", typography: .bodyDefaultRegular)
|
|
35
|
+
.padding(Spacing.M)
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
section("Title Sizes") {
|
|
40
|
+
Collapse(title: "Small title", titleSize: .small) {
|
|
41
|
+
MomoText("Content", typography: .bodyDefaultRegular).padding(Spacing.M)
|
|
42
|
+
}
|
|
43
|
+
Collapse(title: "Medium title", titleSize: .medium) {
|
|
44
|
+
MomoText("Content", typography: .bodyDefaultRegular).padding(Spacing.M)
|
|
45
|
+
}
|
|
46
|
+
Collapse(title: "Large title", titleSize: .large) {
|
|
47
|
+
MomoText("Content", typography: .bodyDefaultRegular).padding(Spacing.M)
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
section("With SubTitle") {
|
|
52
|
+
Collapse(title: "Collapse with subTitle", subTitle: "Sub") {
|
|
53
|
+
MomoText("Content", typography: .bodyDefaultRegular).padding(Spacing.M)
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
section("With Tag") {
|
|
58
|
+
Collapse(title: "Collapse with tag", tagLabel: "New", tagColor: .red) {
|
|
59
|
+
MomoText("Content", typography: .bodyDefaultRegular).padding(Spacing.M)
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
section("Background Collapse Button") {
|
|
64
|
+
Collapse(title: "Tonal chevron button", useBackgroundCollapseButton: true) {
|
|
65
|
+
MomoText("Chevron has tonal background.", typography: .bodyDefaultRegular)
|
|
66
|
+
.padding(Spacing.M)
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
section("With Image") {
|
|
71
|
+
Collapse(
|
|
72
|
+
title: "Collapse with image",
|
|
73
|
+
image: "https://static.momocdn.net/img/momo_icon.png",
|
|
74
|
+
imageSize: 40,
|
|
75
|
+
showBorder: true
|
|
76
|
+
) {
|
|
77
|
+
MomoText("Content with leading image.", typography: .bodyDefaultRegular)
|
|
78
|
+
.padding(Spacing.M)
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
.padding()
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
@ViewBuilder
|
|
87
|
+
private func section<Content: View>(_ title: String, @ViewBuilder content: () -> Content) -> some View {
|
|
88
|
+
VStack(alignment: .leading, spacing: 8) {
|
|
89
|
+
Text(title).font(.headline)
|
|
90
|
+
content()
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
//
|
|
2
|
+
// ContentView.swift
|
|
3
|
+
// Example
|
|
4
|
+
//
|
|
5
|
+
// Created by Wem on 14/12/2023.
|
|
6
|
+
//
|
|
7
|
+
|
|
8
|
+
import MoMoUIKits
|
|
9
|
+
import SwiftUI
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
struct ContentView: View {
|
|
13
|
+
@State private var searchText: String = ""
|
|
14
|
+
@State private var showPopup: Bool = false
|
|
15
|
+
|
|
16
|
+
var body: some View {
|
|
17
|
+
|
|
18
|
+
ScreenDemo()
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
#Preview {
|
|
23
|
+
ContentView()
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
struct ScreenDemo: View {
|
|
27
|
+
var body: some View {
|
|
28
|
+
Screen (
|
|
29
|
+
// backgroundColor: Colors.blue01,
|
|
30
|
+
headerTransparent: true,
|
|
31
|
+
isBack: true,
|
|
32
|
+
headerType: .extended,
|
|
33
|
+
title: "inputPhoneHeadetTitle",
|
|
34
|
+
titlePosition: .left,
|
|
35
|
+
goBack: {print("goBack")},
|
|
36
|
+
scrollable: true,
|
|
37
|
+
onContentLayout: nil,
|
|
38
|
+
useAvoidKeyboard: true,
|
|
39
|
+
footer: { AnyView(MoMoUIKits.Button(title: "String", action: {print("Footer Button")}, type: .primary, size: .large)) },
|
|
40
|
+
headerRight: nil,
|
|
41
|
+
// animatedHeader: AnimatedHeader(aspectRatio: .ratio16_9, composable: {scrollState in AnyView(ImageView("https://static.momocdn.net/app/img/popup_permission/img_permission_popup_camera.png"))}),
|
|
42
|
+
fabProps: FabProps(
|
|
43
|
+
icon: "https://static.momocdn.net/app/img/authentication/floating_helper.png",
|
|
44
|
+
label: "rjhtgirg",
|
|
45
|
+
onClick: { print("HELPER") },
|
|
46
|
+
containerColor: .clear, size: .large,
|
|
47
|
+
scrollOffset: nil,
|
|
48
|
+
position: .right,
|
|
49
|
+
bottomPadding: nil
|
|
50
|
+
|
|
51
|
+
// renderComponent: {
|
|
52
|
+
// AnyView(
|
|
53
|
+
// ImageView("https://static.momocdn.net/app/img/authentication/floating_helper.png")
|
|
54
|
+
// )
|
|
55
|
+
// }
|
|
56
|
+
|
|
57
|
+
)
|
|
58
|
+
) {
|
|
59
|
+
// TrustBanner(onPress: {_ in
|
|
60
|
+
//
|
|
61
|
+
// }).padding(.horizontal, 12)
|
|
62
|
+
// .padding(.vertical, 24)
|
|
63
|
+
// ChipDemo()
|
|
64
|
+
// InputPhoneNumberDemo()
|
|
65
|
+
// ButtonDemo()
|
|
66
|
+
// TypographyDemo()
|
|
67
|
+
// Spacer().frame(height: 300)
|
|
68
|
+
// InputDemo()
|
|
69
|
+
// BadgeDemo()
|
|
70
|
+
// ThemeDemo()
|
|
71
|
+
InputSearchDemo()
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
// VStack {
|
|
75
|
+
// PopupOverlay(isPresented: .constant(true))
|
|
76
|
+
// }
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
struct PopupOverlay: View {
|
|
80
|
+
@Binding var isPresented: Bool
|
|
81
|
+
|
|
82
|
+
var body: some View {
|
|
83
|
+
ZStack {
|
|
84
|
+
Color.black.opacity(0.4)
|
|
85
|
+
.edgesIgnoringSafeArea(.all)
|
|
86
|
+
.onTapGesture {
|
|
87
|
+
isPresented = false
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
PopupDisplay(
|
|
91
|
+
isPresented: $isPresented,
|
|
92
|
+
title: "Cho phép sử dụng camera của bạn để chụp hình",
|
|
93
|
+
description: "[Tên mini app] [Tên mini app] [Tên mini app] [Tên mini app] [Tên mini app] [Tên mini app] [Tên mini app] [Tên mini app] ",
|
|
94
|
+
url: "https://static.momocdn.net/app/img/popup_permission/img_permission_popup_camera.png",
|
|
95
|
+
buttonDirection: .row,
|
|
96
|
+
buttonType: .button,
|
|
97
|
+
actionButtonTitle: "Allow",
|
|
98
|
+
closeButtonTitle: "Deny",
|
|
99
|
+
onPressAction: { isPresented = false },
|
|
100
|
+
onClose: { isPresented = false },
|
|
101
|
+
errorCode: "3643"
|
|
102
|
+
)
|
|
103
|
+
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
//
|
|
2
|
+
// DateTimePickerDemo.swift
|
|
3
|
+
// Example
|
|
4
|
+
//
|
|
5
|
+
|
|
6
|
+
import Foundation
|
|
7
|
+
import MoMoUIKits
|
|
8
|
+
import SwiftUI
|
|
9
|
+
|
|
10
|
+
// MARK: - DateTimePickerDemo
|
|
11
|
+
|
|
12
|
+
struct DateTimePickerDemo: View {
|
|
13
|
+
@State private var selected1: Date?
|
|
14
|
+
@State private var selected2: Date?
|
|
15
|
+
@State private var selected3: Date?
|
|
16
|
+
@State private var selected4: Date?
|
|
17
|
+
@State private var selected5: Date?
|
|
18
|
+
@State private var selected6: Date?
|
|
19
|
+
@State private var selected7: Date? = DateTimePickerUtils.getCurrentDateTime()
|
|
20
|
+
|
|
21
|
+
var body: some View {
|
|
22
|
+
ScrollView {
|
|
23
|
+
VStack(alignment: .leading, spacing: 24) {
|
|
24
|
+
section("Format: DD-MM-YYYY") {
|
|
25
|
+
DateTimePicker(
|
|
26
|
+
format: "DD-MM-YYYY",
|
|
27
|
+
onChange: { selected1 = $0 }
|
|
28
|
+
)
|
|
29
|
+
selectedLabel(selected1, format: "dd-MM-yyyy")
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
section("Format: DD-MM-YYYY HH:mm") {
|
|
33
|
+
DateTimePicker(
|
|
34
|
+
format: "DD-MM-YYYY HH:mm",
|
|
35
|
+
onChange: { selected2 = $0 }
|
|
36
|
+
)
|
|
37
|
+
selectedLabel(selected2, format: "yyyy-MM-dd HH:mm")
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
section("Format: HH:mm") {
|
|
41
|
+
DateTimePicker(
|
|
42
|
+
format: "HH:mm",
|
|
43
|
+
onChange: { selected3 = $0 }
|
|
44
|
+
)
|
|
45
|
+
selectedLabel(selected3, format: "HH:mm")
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
section("With minute interval (5 minutes)") {
|
|
49
|
+
DateTimePicker(
|
|
50
|
+
format: "DD-MM-YYYY HH:mm",
|
|
51
|
+
minuteInterval: 5,
|
|
52
|
+
onChange: { selected4 = $0 }
|
|
53
|
+
)
|
|
54
|
+
selectedLabel(selected4, format: "yyyy-MM-dd HH:mm")
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
section("With min/max date") {
|
|
58
|
+
DateTimePicker(
|
|
59
|
+
format: "DD-MM-YYYY",
|
|
60
|
+
selectedValue: nil,
|
|
61
|
+
minDate: DateTimePickerUtils.createRelativeDate(years: -1),
|
|
62
|
+
maxDate: DateTimePickerUtils.createRelativeDate(years: 1),
|
|
63
|
+
onChange: { selected5 = $0 }
|
|
64
|
+
)
|
|
65
|
+
selectedLabel(selected5, format: "dd-MM-yyyy")
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
section("With labels") {
|
|
69
|
+
DateTimePicker(
|
|
70
|
+
format: "DD-MM-YYYY HH:mm",
|
|
71
|
+
arrayLabelTime: ["Day", "Month", "Year", "Hour", "Min"],
|
|
72
|
+
onChange: { selected6 = $0 }
|
|
73
|
+
)
|
|
74
|
+
selectedLabel(selected6, format: "yyyy-MM-dd HH:mm")
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
section("With selected value") {
|
|
78
|
+
DateTimePicker(
|
|
79
|
+
format: "DD-MM-YYYY HH:mm",
|
|
80
|
+
selectedValue: selected7,
|
|
81
|
+
onChange: { selected7 = $0 }
|
|
82
|
+
)
|
|
83
|
+
selectedLabel(selected7, format: "yyyy-MM-dd HH:mm")
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
.padding(.vertical, 16)
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
// MARK: - Helpers
|
|
91
|
+
|
|
92
|
+
@ViewBuilder
|
|
93
|
+
private func selectedLabel(_ date: Date?, format: String) -> some View {
|
|
94
|
+
if let date = date {
|
|
95
|
+
MomoText(
|
|
96
|
+
"Selected: \(DateTimePickerUtils.formatDate(date, format: format))",
|
|
97
|
+
typography: .descriptionDefaultRegular,
|
|
98
|
+
color: Colors.textSecondary
|
|
99
|
+
)
|
|
100
|
+
.padding(.top, 8)
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
@ViewBuilder
|
|
105
|
+
private func section<Content: View>(
|
|
106
|
+
_ title: String,
|
|
107
|
+
@ViewBuilder content: () -> Content
|
|
108
|
+
) -> some View {
|
|
109
|
+
VStack(alignment: .leading, spacing: 12) {
|
|
110
|
+
Text(title)
|
|
111
|
+
.font(.headline)
|
|
112
|
+
content()
|
|
113
|
+
}
|
|
114
|
+
.padding(.horizontal, 16)
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
#if DEBUG
|
|
119
|
+
struct DateTimePickerDemo_Previews: PreviewProvider {
|
|
120
|
+
static var previews: some View {
|
|
121
|
+
DateTimePickerDemo()
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
#endif
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
//
|
|
2
|
+
// HeaderUserDemo.swift
|
|
3
|
+
// Example
|
|
4
|
+
//
|
|
5
|
+
// Usage demo for the `HeaderTitle.user` header. Mirrors Compose's
|
|
6
|
+
// `HeaderUserUsage`: the avatar-group user title is supplied via the screen's
|
|
7
|
+
// NavigationOptions (see NavigationDemo's "Header User Title" entry), and this
|
|
8
|
+
// body explains the variations the title supports.
|
|
9
|
+
//
|
|
10
|
+
|
|
11
|
+
import MoMoUIKits
|
|
12
|
+
import SwiftUI
|
|
13
|
+
|
|
14
|
+
@available(iOS 16.0, *)
|
|
15
|
+
struct HeaderUserDemoContent: View {
|
|
16
|
+
var body: some View {
|
|
17
|
+
VStack(alignment: .leading, spacing: 16) {
|
|
18
|
+
MomoText("The header above renders a HeaderTitle.user:", typography: .headerDefaultBold)
|
|
19
|
+
bullet("Avatar group (1–4 avatars, then a “+n” overflow tile)")
|
|
20
|
+
bullet("Initials fallback when no avatar URLs are provided")
|
|
21
|
+
bullet("Title + optional inline verified icons")
|
|
22
|
+
bullet("Optional subtitle and status dot")
|
|
23
|
+
bullet("Skeleton shimmer while isLoading")
|
|
24
|
+
Spacer()
|
|
25
|
+
}
|
|
26
|
+
.frame(maxWidth: .infinity, alignment: .leading)
|
|
27
|
+
.padding(16)
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
@ViewBuilder
|
|
31
|
+
private func bullet(_ text: String) -> some View {
|
|
32
|
+
HStack(alignment: .top, spacing: 8) {
|
|
33
|
+
MomoText("•")
|
|
34
|
+
MomoText(text)
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
// MARK: - Standalone wrapper (header title is only visible when pushed via NavigationDemo)
|
|
40
|
+
|
|
41
|
+
struct HeaderUserDemo: View {
|
|
42
|
+
var body: some View {
|
|
43
|
+
if #available(iOS 16.0, *) {
|
|
44
|
+
HeaderUserDemoContent()
|
|
45
|
+
} else {
|
|
46
|
+
Text("Header user demo requires iOS 16+").padding()
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|