@momo-kits/native-kits 0.163.1-beta.3-debug → 0.163.1-beta.5-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.md +1 -1
- package/compose/build.gradle.kts +2 -1
- package/compose/build.gradle.kts.backup +1 -0
- package/compose/compose.podspec +1 -1
- package/compose/src/androidMain/kotlin/vn/momo/kits/platform/OsFontScale.android.kt +7 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/Context.kt +8 -10
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/NavigationContainer.kt +3 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/WidgetContainer.kt +56 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Button.kt +11 -9
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/IconButton.kt +40 -55
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Image.kt +69 -26
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputTextArea.kt +3 -1
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/ScaleSizeScope.kt +21 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Text.kt +3 -6
- package/compose/src/commonMain/kotlin/vn/momo/kits/const/KitFontScale.kt +22 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/const/Typography.kt +28 -21
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/Navigation.kt +4 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/NavigationContainer.kt +112 -115
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/StackScreen.kt +11 -6
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTab.kt +3 -4
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTabBar.kt +3 -1
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/Header.kt +2 -1
- package/compose/src/commonMain/kotlin/vn/momo/kits/platform/OsFontScale.kt +9 -0
- package/compose/src/iosMain/kotlin/vn/momo/kits/platform/OsFontScale.ios.kt +66 -0
- package/gradle/libs.versions.toml +2 -0
- package/gradle.properties +1 -1
- package/ios/Application/ApplicationEnvironment.swift +11 -1
- package/ios/Application/Components.swift +34 -44
- package/ios/Application/FloatingButton.swift +10 -9
- package/ios/Application/HeaderRight.swift +79 -45
- package/ios/Application/Navigation/BottomTab/BottomTab.swift +103 -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 +176 -0
- package/ios/Application/Navigation/NavigationOptions.swift +109 -0
- package/ios/Application/Navigation/Navigator.swift +364 -0
- package/ios/Application/Navigation/Overplay/BottomSheet.swift +188 -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/Screen.swift +2 -1
- package/ios/Application/StackScreen.swift +453 -0
- package/ios/Avatar/Avatar.swift +193 -0
- package/ios/Badge/Badge.swift +11 -14
- package/ios/Badge/BadgeRibbon.swift +12 -21
- package/ios/BaselineView/BaselineView.swift +163 -0
- package/ios/Button/Button.swift +61 -22
- package/ios/Carousel/Carousel.swift +181 -0
- package/ios/Checkbox/Checkbox.swift +14 -13
- package/ios/Chip/Chip.swift +23 -9
- package/ios/Collapse/Collapse.swift +182 -0
- package/ios/Colors+Radius+Spacing/Colors.swift +12 -12
- 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/Extensions/Color++.swift +32 -0
- package/ios/Icon/Icon.swift +6 -1
- package/ios/IconButton/IconButton.swift +112 -0
- package/ios/Input/Input.swift +41 -25
- package/ios/Input/InputPhoneNumber.swift +20 -19
- package/ios/Input/InputSearch.swift +100 -47
- package/ios/Input/InputTextArea.swift +66 -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/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 +8 -16
- package/ios/Popup/PopupInput.swift +2 -8
- 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/Resources/MoMoUIKitsColors.xcassets/AccentColor.colorset/Contents.json +11 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Background.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Border.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Card.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Contents.json +6 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Error.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Primary.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/PrimaryDark.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/PrimaryLight.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Secondary.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Success.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Text.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/TextSecondary.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/Contents.json +9 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-default.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-disable.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-pressed.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-selected.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-surface.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-tonal.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/border-default.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/border-disable.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/gradient.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/primary.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/secondary.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/success-container.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/success-primary.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/success-secondary.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/text-default.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/text-disable.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/text-hint.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/text-secondary.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Warning.colorset/Contents.json +38 -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/Title/Title.swift +269 -0
- package/ios/Tooltip/Tooltip.swift +482 -0
- package/ios/Typography/FontScaleStore.swift +19 -0
- package/ios/Typography/Text.swift +86 -17
- package/ios/Typography/Typography.swift +12 -14
- package/ios/Uploader/Uploader.swift +183 -0
- package/ios/native-kits.podspec +61 -8
- package/ios-demo/MoMoUIKitsDemo.podspec +20 -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 +24 -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 +278 -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 +51 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/UIKitsDemoModels.swift +15 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/UIKitsDemoRegistry.swift +73 -0
- package/package.json +1 -1
- package/publish.sh +50 -0
- package/scripts/gen-ios-color.mjs +136 -0
- package/example/ios/Example.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/xcschememanagement.plist +0 -14
- package/example/ios/Example.xcworkspace/xcuserdata/huynhdung.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/example/ios/Example.xcworkspace/xcuserdata/huynhdung.xcuserdatad/xcschemes/xcschememanagement.plist +0 -5
- package/example/ios/Pods/Pods.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/MoMoUIKits.xcscheme +0 -58
- package/example/ios/Pods/Pods.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/Pods-Example.xcscheme +0 -58
- package/example/ios/Pods/Pods.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/SDWebImage.xcscheme +0 -58
- package/example/ios/Pods/Pods.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/SDWebImageSwiftUI.xcscheme +0 -58
- package/example/ios/Pods/Pods.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/SkeletonUI.xcscheme +0 -58
- package/example/ios/Pods/Pods.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/xcschememanagement.plist +0 -46
- package/ios/Application/FontScaleStore.swift +0 -59
package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/success-primary.colorset/Contents.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": [
|
|
3
|
+
{
|
|
4
|
+
"color": {
|
|
5
|
+
"color-space": "srgb",
|
|
6
|
+
"components": {
|
|
7
|
+
"red": "0x34",
|
|
8
|
+
"green": "0xC7",
|
|
9
|
+
"blue": "0x59",
|
|
10
|
+
"alpha": "1.000"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"idiom": "universal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": {
|
|
17
|
+
"color-space": "srgb",
|
|
18
|
+
"components": {
|
|
19
|
+
"red": "0x34",
|
|
20
|
+
"green": "0xC7",
|
|
21
|
+
"blue": "0x59",
|
|
22
|
+
"alpha": "1.000"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"idiom": "universal",
|
|
26
|
+
"appearances": [
|
|
27
|
+
{
|
|
28
|
+
"appearance": "luminosity",
|
|
29
|
+
"value": "dark"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info": {
|
|
35
|
+
"author": "xcode",
|
|
36
|
+
"version": 1
|
|
37
|
+
}
|
|
38
|
+
}
|
package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/success-secondary.colorset/Contents.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": [
|
|
3
|
+
{
|
|
4
|
+
"color": {
|
|
5
|
+
"color-space": "srgb",
|
|
6
|
+
"components": {
|
|
7
|
+
"red": "0xAE",
|
|
8
|
+
"green": "0xE9",
|
|
9
|
+
"blue": "0xBD",
|
|
10
|
+
"alpha": "1.000"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"idiom": "universal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": {
|
|
17
|
+
"color-space": "srgb",
|
|
18
|
+
"components": {
|
|
19
|
+
"red": "0xAE",
|
|
20
|
+
"green": "0xE9",
|
|
21
|
+
"blue": "0xBD",
|
|
22
|
+
"alpha": "1.000"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"idiom": "universal",
|
|
26
|
+
"appearances": [
|
|
27
|
+
{
|
|
28
|
+
"appearance": "luminosity",
|
|
29
|
+
"value": "dark"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info": {
|
|
35
|
+
"author": "xcode",
|
|
36
|
+
"version": 1
|
|
37
|
+
}
|
|
38
|
+
}
|
package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/text-default.colorset/Contents.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": [
|
|
3
|
+
{
|
|
4
|
+
"color": {
|
|
5
|
+
"color-space": "srgb",
|
|
6
|
+
"components": {
|
|
7
|
+
"red": "0x30",
|
|
8
|
+
"green": "0x32",
|
|
9
|
+
"blue": "0x33",
|
|
10
|
+
"alpha": "1.000"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"idiom": "universal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": {
|
|
17
|
+
"color-space": "srgb",
|
|
18
|
+
"components": {
|
|
19
|
+
"red": "0xFF",
|
|
20
|
+
"green": "0xFF",
|
|
21
|
+
"blue": "0xFF",
|
|
22
|
+
"alpha": "1.000"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"idiom": "universal",
|
|
26
|
+
"appearances": [
|
|
27
|
+
{
|
|
28
|
+
"appearance": "luminosity",
|
|
29
|
+
"value": "dark"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info": {
|
|
35
|
+
"author": "xcode",
|
|
36
|
+
"version": 1
|
|
37
|
+
}
|
|
38
|
+
}
|
package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/text-disable.colorset/Contents.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": [
|
|
3
|
+
{
|
|
4
|
+
"color": {
|
|
5
|
+
"color-space": "srgb",
|
|
6
|
+
"components": {
|
|
7
|
+
"red": "0xC6",
|
|
8
|
+
"green": "0xC6",
|
|
9
|
+
"blue": "0xC6",
|
|
10
|
+
"alpha": "1.000"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"idiom": "universal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": {
|
|
17
|
+
"color-space": "srgb",
|
|
18
|
+
"components": {
|
|
19
|
+
"red": "0x50",
|
|
20
|
+
"green": "0x50",
|
|
21
|
+
"blue": "0x50",
|
|
22
|
+
"alpha": "1.000"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"idiom": "universal",
|
|
26
|
+
"appearances": [
|
|
27
|
+
{
|
|
28
|
+
"appearance": "luminosity",
|
|
29
|
+
"value": "dark"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info": {
|
|
35
|
+
"author": "xcode",
|
|
36
|
+
"version": 1
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": [
|
|
3
|
+
{
|
|
4
|
+
"color": {
|
|
5
|
+
"color-space": "srgb",
|
|
6
|
+
"components": {
|
|
7
|
+
"red": "0x72",
|
|
8
|
+
"green": "0x72",
|
|
9
|
+
"blue": "0x72",
|
|
10
|
+
"alpha": "1.000"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"idiom": "universal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": {
|
|
17
|
+
"color-space": "srgb",
|
|
18
|
+
"components": {
|
|
19
|
+
"red": "0x72",
|
|
20
|
+
"green": "0x72",
|
|
21
|
+
"blue": "0x72",
|
|
22
|
+
"alpha": "1.000"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"idiom": "universal",
|
|
26
|
+
"appearances": [
|
|
27
|
+
{
|
|
28
|
+
"appearance": "luminosity",
|
|
29
|
+
"value": "dark"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info": {
|
|
35
|
+
"author": "xcode",
|
|
36
|
+
"version": 1
|
|
37
|
+
}
|
|
38
|
+
}
|
package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/text-secondary.colorset/Contents.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": [
|
|
3
|
+
{
|
|
4
|
+
"color": {
|
|
5
|
+
"color-space": "srgb",
|
|
6
|
+
"components": {
|
|
7
|
+
"red": "0x48",
|
|
8
|
+
"green": "0x48",
|
|
9
|
+
"blue": "0x48",
|
|
10
|
+
"alpha": "1.000"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"idiom": "universal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": {
|
|
17
|
+
"color-space": "srgb",
|
|
18
|
+
"components": {
|
|
19
|
+
"red": "0xB0",
|
|
20
|
+
"green": "0xB0",
|
|
21
|
+
"blue": "0xB0",
|
|
22
|
+
"alpha": "1.000"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"idiom": "universal",
|
|
26
|
+
"appearances": [
|
|
27
|
+
{
|
|
28
|
+
"appearance": "luminosity",
|
|
29
|
+
"value": "dark"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info": {
|
|
35
|
+
"author": "xcode",
|
|
36
|
+
"version": 1
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors" : [
|
|
3
|
+
{
|
|
4
|
+
"color" : {
|
|
5
|
+
"color-space" : "srgb",
|
|
6
|
+
"components" : {
|
|
7
|
+
"alpha" : "1.000",
|
|
8
|
+
"blue" : "0.086",
|
|
9
|
+
"green" : "0.549",
|
|
10
|
+
"red" : "0.980"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"idiom" : "universal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"appearances" : [
|
|
17
|
+
{
|
|
18
|
+
"appearance" : "luminosity",
|
|
19
|
+
"value" : "dark"
|
|
20
|
+
}
|
|
21
|
+
],
|
|
22
|
+
"color" : {
|
|
23
|
+
"color-space" : "srgb",
|
|
24
|
+
"components" : {
|
|
25
|
+
"alpha" : "1.000",
|
|
26
|
+
"blue" : "0.086",
|
|
27
|
+
"green" : "0.549",
|
|
28
|
+
"red" : "0.980"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"idiom" : "universal"
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info" : {
|
|
35
|
+
"author" : "xcode",
|
|
36
|
+
"version" : 1
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import Foundation
|
|
2
|
+
import SwiftUI
|
|
3
|
+
|
|
4
|
+
/// Native SwiftUI port of the Compose `Skeleton` component.
|
|
5
|
+
///
|
|
6
|
+
/// Fills the available space with a base placeholder color and overlays a
|
|
7
|
+
/// horizontal shimmer gradient that animates left-to-right on an infinite loop.
|
|
8
|
+
///
|
|
9
|
+
/// Mirrors the Compose surface: `Skeleton()` takes no required arguments and
|
|
10
|
+
/// fills its container. The shimmer animation parameters match the Compose
|
|
11
|
+
/// defaults (`durationMillis = 1000`, shimmer band = 60% of container width).
|
|
12
|
+
public struct Skeleton: View {
|
|
13
|
+
// Matches Compose `DEFAULT_DURATION_MILLIS = 1000`.
|
|
14
|
+
private let durationMillis: Int
|
|
15
|
+
// Matches Compose `angleOfAxisY = 0f` (horizontal gradient).
|
|
16
|
+
private let angleOfAxisY: CGFloat
|
|
17
|
+
|
|
18
|
+
public init(
|
|
19
|
+
durationMillis: Int = 1000,
|
|
20
|
+
angleOfAxisY: CGFloat = 0
|
|
21
|
+
) {
|
|
22
|
+
self.durationMillis = durationMillis
|
|
23
|
+
self.angleOfAxisY = angleOfAxisY
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
public var body: some View {
|
|
27
|
+
GeometryReader { proxy in
|
|
28
|
+
ShimmerLoading(
|
|
29
|
+
size: proxy.size,
|
|
30
|
+
durationMillis: durationMillis,
|
|
31
|
+
angleOfAxisY: angleOfAxisY
|
|
32
|
+
)
|
|
33
|
+
}
|
|
34
|
+
// Compose base background (`Colors.black_05`).
|
|
35
|
+
.background(Colors.black05)
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/// Internal shimmer overlay. Reproduces Compose's `Modifier.shimmerLoadingAnimation`:
|
|
40
|
+
/// a linear gradient band (60% of the container width) translated across the
|
|
41
|
+
/// surface on an infinite, restarting, linearly-eased loop.
|
|
42
|
+
private struct ShimmerLoading: View {
|
|
43
|
+
let size: CGSize
|
|
44
|
+
let durationMillis: Int
|
|
45
|
+
let angleOfAxisY: CGFloat
|
|
46
|
+
|
|
47
|
+
@State private var phase: CGFloat = 0
|
|
48
|
+
|
|
49
|
+
// Matches Compose `SHADOW_BRUSH_PERCENTAGE = 0.6f`.
|
|
50
|
+
private static let shadowBrushPercentage: CGFloat = 0.6
|
|
51
|
+
|
|
52
|
+
// Pre-computed shimmer colors (Colors.black_05, black_03, black_05).
|
|
53
|
+
private static let shimmerColors: [Color] = [
|
|
54
|
+
Colors.black05,
|
|
55
|
+
Colors.black03,
|
|
56
|
+
Colors.black05,
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
private var widthOfShadowBrush: CGFloat {
|
|
60
|
+
(size.width * Self.shadowBrushPercentage).rounded(.towardZero)
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
// Compose animates from 0 to (durationMillis + widthOfShadowBrush). Since the
|
|
64
|
+
// band is anchored at the animated value, the meaningful travel range spans
|
|
65
|
+
// from off-screen-left to off-screen-right: -widthOfShadowBrush ... maxWidth.
|
|
66
|
+
private var animationTarget: CGFloat {
|
|
67
|
+
size.width + widthOfShadowBrush
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
var body: some View {
|
|
71
|
+
let startX = phase - widthOfShadowBrush
|
|
72
|
+
let endX = phase
|
|
73
|
+
|
|
74
|
+
Rectangle()
|
|
75
|
+
.fill(
|
|
76
|
+
LinearGradient(
|
|
77
|
+
gradient: Gradient(colors: Self.shimmerColors),
|
|
78
|
+
startPoint: .init(
|
|
79
|
+
x: size.width > 0 ? startX / size.width : 0,
|
|
80
|
+
y: 0
|
|
81
|
+
),
|
|
82
|
+
endPoint: .init(
|
|
83
|
+
x: size.width > 0 ? endX / size.width : 0,
|
|
84
|
+
y: size.height > 0 ? angleOfAxisY / size.height : 0
|
|
85
|
+
)
|
|
86
|
+
)
|
|
87
|
+
)
|
|
88
|
+
.onAppear {
|
|
89
|
+
guard size.width > 0 else { return }
|
|
90
|
+
phase = 0
|
|
91
|
+
withAnimation(
|
|
92
|
+
.linear(duration: Double(durationMillis) / 1000.0)
|
|
93
|
+
.repeatForever(autoreverses: false)
|
|
94
|
+
) {
|
|
95
|
+
phase = animationTarget
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
import SwiftUI
|
|
2
|
+
|
|
3
|
+
// ── Design constants ─────────────────────────────────────────────────────────
|
|
4
|
+
|
|
5
|
+
private let THUMB_SIZE: CGFloat = 20
|
|
6
|
+
private let THUMB_BORDER: CGFloat = 3
|
|
7
|
+
private let TRACK_HEIGHT: CGFloat = 4
|
|
8
|
+
private let LABEL_GAP: CGFloat = 4 // space between label and thumb top (Spacing.XS)
|
|
9
|
+
|
|
10
|
+
// ── Pure helpers (mirrors Compose / RN helpers) ──────────────────────────────
|
|
11
|
+
|
|
12
|
+
private func clampF(_ value: CGFloat, _ minV: CGFloat, _ maxV: CGFloat) -> CGFloat {
|
|
13
|
+
Swift.min(Swift.max(value, minV), maxV)
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
/// Converts a raw touch position into a snapped slider value.
|
|
17
|
+
/// Direct port of Compose getValueForPosition().
|
|
18
|
+
private func getValueForPosition(
|
|
19
|
+
positionInView: CGFloat,
|
|
20
|
+
containerWidth: CGFloat,
|
|
21
|
+
thumbWidth: CGFloat,
|
|
22
|
+
minV: CGFloat,
|
|
23
|
+
maxV: CGFloat,
|
|
24
|
+
step: CGFloat
|
|
25
|
+
) -> CGFloat {
|
|
26
|
+
let availableSpace = containerWidth - thumbWidth
|
|
27
|
+
if availableSpace <= 0 { return minV }
|
|
28
|
+
let relStepUnit = step / (maxV - minV)
|
|
29
|
+
var relPosition = (positionInView - thumbWidth / 2) / availableSpace
|
|
30
|
+
let relOffset = relPosition.truncatingRemainder(dividingBy: relStepUnit)
|
|
31
|
+
relPosition -= relOffset
|
|
32
|
+
if relStepUnit != 0, relOffset / relStepUnit >= 0.5 { relPosition += relStepUnit }
|
|
33
|
+
let steps = (relPosition / relStepUnit).rounded()
|
|
34
|
+
return clampF(minV + steps * step, minV, maxV)
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/// Direct port of Compose isLowCloser().
|
|
38
|
+
private func isLowCloser(_ downX: CGFloat, _ lowPosition: CGFloat, _ highPosition: CGFloat) -> Bool {
|
|
39
|
+
if lowPosition == highPosition { return downX < lowPosition }
|
|
40
|
+
return abs(downX - lowPosition) < abs(downX - highPosition)
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
private func valueToFraction(_ value: CGFloat, _ minV: CGFloat, _ maxV: CGFloat) -> CGFloat {
|
|
44
|
+
if maxV == minV { return 0 }
|
|
45
|
+
return clampF((value - minV) / (maxV - minV), 0, 1)
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
private func formatLabel(_ value: CGFloat) -> String {
|
|
49
|
+
if value == value.rounded() {
|
|
50
|
+
return String(Int(value))
|
|
51
|
+
}
|
|
52
|
+
return String(format: "%.1f", value)
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
// ── Component ─────────────────────────────────────────────────────────────────
|
|
56
|
+
|
|
57
|
+
/// Range slider (or single-thumb when `disableRange` = true), ported from Compose.
|
|
58
|
+
///
|
|
59
|
+
/// SwiftUI ships a built-in `Slider`; this custom type is named `MomoSlider`
|
|
60
|
+
/// (convention, like `MomoText`) to avoid module-wide shadowing.
|
|
61
|
+
public struct MomoSlider: View {
|
|
62
|
+
@Environment(\.appTheme) private var theme
|
|
63
|
+
|
|
64
|
+
private let minV: CGFloat
|
|
65
|
+
private let maxV: CGFloat
|
|
66
|
+
private let step: CGFloat
|
|
67
|
+
private let initLow: CGFloat
|
|
68
|
+
private let initHigh: CGFloat
|
|
69
|
+
private let minRange: CGFloat
|
|
70
|
+
private let disableRange: Bool
|
|
71
|
+
private let floatingLabel: Bool
|
|
72
|
+
private let disabled: Bool
|
|
73
|
+
private let onValueChanged: (CGFloat, CGFloat, Bool) -> Void
|
|
74
|
+
private let onSliderTouchStart: (CGFloat, CGFloat) -> Void
|
|
75
|
+
private let onSliderTouchEnd: (CGFloat, CGFloat) -> Void
|
|
76
|
+
|
|
77
|
+
@State private var lowValue: CGFloat = 0
|
|
78
|
+
@State private var highValue: CGFloat = 0
|
|
79
|
+
@State private var draggingLow: Bool = true
|
|
80
|
+
@State private var isDragging: Bool = false
|
|
81
|
+
@State private var didInit: Bool = false
|
|
82
|
+
|
|
83
|
+
public init(
|
|
84
|
+
min: CGFloat,
|
|
85
|
+
max: CGFloat,
|
|
86
|
+
step: CGFloat,
|
|
87
|
+
low: CGFloat? = nil,
|
|
88
|
+
high: CGFloat? = nil,
|
|
89
|
+
minRange: CGFloat = 0,
|
|
90
|
+
disableRange: Bool = false,
|
|
91
|
+
floatingLabel: Bool = false,
|
|
92
|
+
disabled: Bool = false,
|
|
93
|
+
onValueChanged: @escaping (CGFloat, CGFloat, Bool) -> Void = { _, _, _ in },
|
|
94
|
+
onSliderTouchStart: @escaping (CGFloat, CGFloat) -> Void = { _, _ in },
|
|
95
|
+
onSliderTouchEnd: @escaping (CGFloat, CGFloat) -> Void = { _, _ in }
|
|
96
|
+
) {
|
|
97
|
+
self.minV = min
|
|
98
|
+
self.maxV = max
|
|
99
|
+
self.step = step
|
|
100
|
+
self.minRange = minRange
|
|
101
|
+
self.disableRange = disableRange
|
|
102
|
+
self.floatingLabel = floatingLabel
|
|
103
|
+
self.disabled = disabled
|
|
104
|
+
self.onValueChanged = onValueChanged
|
|
105
|
+
self.onSliderTouchStart = onSliderTouchStart
|
|
106
|
+
self.onSliderTouchEnd = onSliderTouchEnd
|
|
107
|
+
|
|
108
|
+
self.initLow = clampF(low ?? min, min, max)
|
|
109
|
+
self.initHigh = disableRange ? max : clampF(high ?? max, min, max)
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
private var thumbColor: Color { disabled ? theme.colors.text.disable : theme.colors.primary }
|
|
113
|
+
private var trackActiveColor: Color { disabled ? theme.colors.text.disable : theme.colors.primary }
|
|
114
|
+
private var trackInactiveColor: Color { theme.colors.background.default }
|
|
115
|
+
|
|
116
|
+
public var body: some View {
|
|
117
|
+
GeometryReader { geo in
|
|
118
|
+
let trackWidth = geo.size.width
|
|
119
|
+
let availableWidth = max(trackWidth - THUMB_SIZE, 0)
|
|
120
|
+
let topPad: CGFloat = floatingLabel ? (THUMB_SIZE + LABEL_GAP) : 0
|
|
121
|
+
|
|
122
|
+
let lowFraction = valueToFraction(lowValue, minV, maxV)
|
|
123
|
+
let highFraction = valueToFraction(highValue, minV, maxV)
|
|
124
|
+
|
|
125
|
+
let activeStartFraction = disableRange ? 0 : lowFraction
|
|
126
|
+
let activeEndFraction = disableRange ? lowFraction : highFraction
|
|
127
|
+
let activeStartX = THUMB_SIZE / 2 + availableWidth * activeStartFraction
|
|
128
|
+
let activeWidth = availableWidth * (activeEndFraction - activeStartFraction)
|
|
129
|
+
|
|
130
|
+
ZStack(alignment: .topLeading) {
|
|
131
|
+
// ── Floating label ────────────────────────────────────────────
|
|
132
|
+
if floatingLabel && isDragging {
|
|
133
|
+
let activeFraction = draggingLow ? lowFraction : highFraction
|
|
134
|
+
let activeValue = draggingLow ? lowValue : highValue
|
|
135
|
+
MomoText(formatLabel(activeValue), typography: .descriptionXsRegular, color: theme.colors.text.default)
|
|
136
|
+
.padding(.horizontal, Spacing.XS)
|
|
137
|
+
.padding(.vertical, Spacing.XXS)
|
|
138
|
+
.background(Colors.black01)
|
|
139
|
+
.clipShape(RoundedRectangle(cornerRadius: Radius.XS))
|
|
140
|
+
.offset(x: availableWidth * activeFraction, y: 0)
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
// ── Inactive track (full width) ───────────────────────────────
|
|
144
|
+
Capsule()
|
|
145
|
+
.fill(trackInactiveColor)
|
|
146
|
+
.frame(width: max(trackWidth - THUMB_SIZE, 0), height: TRACK_HEIGHT)
|
|
147
|
+
.offset(x: THUMB_SIZE / 2, y: topPad + (THUMB_SIZE - TRACK_HEIGHT) / 2)
|
|
148
|
+
|
|
149
|
+
// ── Active track (selected range / single value) ──────────────
|
|
150
|
+
if activeWidth > 0 {
|
|
151
|
+
Capsule()
|
|
152
|
+
.fill(trackActiveColor)
|
|
153
|
+
.frame(width: activeWidth, height: TRACK_HEIGHT)
|
|
154
|
+
.offset(x: activeStartX, y: topPad + (THUMB_SIZE - TRACK_HEIGHT) / 2)
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
// ── Low thumb ─────────────────────────────────────────────────
|
|
158
|
+
thumb
|
|
159
|
+
.offset(x: availableWidth * lowFraction, y: topPad)
|
|
160
|
+
|
|
161
|
+
// ── High thumb (range mode only) ──────────────────────────────
|
|
162
|
+
if !disableRange {
|
|
163
|
+
thumb
|
|
164
|
+
.offset(x: availableWidth * highFraction, y: topPad)
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
.frame(width: trackWidth, height: topPad + THUMB_SIZE, alignment: .topLeading)
|
|
168
|
+
.contentShape(Rectangle())
|
|
169
|
+
.gesture(dragGesture(trackWidth: trackWidth))
|
|
170
|
+
}
|
|
171
|
+
.frame(height: (floatingLabel ? (THUMB_SIZE + LABEL_GAP) : 0) + THUMB_SIZE)
|
|
172
|
+
.onAppear {
|
|
173
|
+
if !didInit {
|
|
174
|
+
lowValue = initLow
|
|
175
|
+
highValue = initHigh
|
|
176
|
+
didInit = true
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
private var thumb: some View {
|
|
182
|
+
Circle()
|
|
183
|
+
.fill(thumbColor)
|
|
184
|
+
.frame(width: THUMB_SIZE, height: THUMB_SIZE)
|
|
185
|
+
.overlay(
|
|
186
|
+
Circle().strokeBorder(theme.colors.background.surface, lineWidth: THUMB_BORDER)
|
|
187
|
+
)
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
private func dragGesture(trackWidth: CGFloat) -> some Gesture {
|
|
191
|
+
DragGesture(minimumDistance: 0)
|
|
192
|
+
.onChanged { gesture in
|
|
193
|
+
if disabled { return }
|
|
194
|
+
let touchX = gesture.location.x
|
|
195
|
+
|
|
196
|
+
if !isDragging {
|
|
197
|
+
// Finger down: pick the closer thumb
|
|
198
|
+
let lowCenterX = THUMB_SIZE / 2 +
|
|
199
|
+
valueToFraction(lowValue, minV, maxV) * (trackWidth - THUMB_SIZE)
|
|
200
|
+
let highCenterX = THUMB_SIZE / 2 +
|
|
201
|
+
valueToFraction(highValue, minV, maxV) * (trackWidth - THUMB_SIZE)
|
|
202
|
+
draggingLow = disableRange || isLowCloser(touchX, lowCenterX, highCenterX)
|
|
203
|
+
isDragging = true
|
|
204
|
+
onSliderTouchStart(lowValue, highValue)
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
applyDrag(positionX: touchX, trackWidthPx: trackWidth)
|
|
208
|
+
}
|
|
209
|
+
.onEnded { _ in
|
|
210
|
+
if disabled { return }
|
|
211
|
+
isDragging = false
|
|
212
|
+
onSliderTouchEnd(lowValue, highValue)
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
private func applyDrag(positionX: CGFloat, trackWidthPx: CGFloat) {
|
|
217
|
+
let snapped = getValueForPosition(
|
|
218
|
+
positionInView: positionX,
|
|
219
|
+
containerWidth: trackWidthPx,
|
|
220
|
+
thumbWidth: THUMB_SIZE,
|
|
221
|
+
minV: minV, maxV: maxV, step: step
|
|
222
|
+
)
|
|
223
|
+
if draggingLow {
|
|
224
|
+
let newLow = clampF(snapped, minV, highValue - minRange)
|
|
225
|
+
if newLow != lowValue {
|
|
226
|
+
lowValue = newLow
|
|
227
|
+
onValueChanged(newLow, highValue, true)
|
|
228
|
+
}
|
|
229
|
+
} else {
|
|
230
|
+
let newHigh = clampF(snapped, lowValue + minRange, maxV)
|
|
231
|
+
if newHigh != highValue {
|
|
232
|
+
highValue = newHigh
|
|
233
|
+
onValueChanged(lowValue, newHigh, true)
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
}
|