@momo-kits/native-kits 0.163.2-beta.2 → 0.164.1-beta.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.md +19 -0
- package/build.gradle.kts +11 -0
- package/compose/build.gradle.kts +190 -0
- package/compose/build.gradle.kts.backup +190 -0
- package/compose/compose.podspec +47 -0
- package/compose/src/androidMain/kotlin/vn/momo/kits/navigation/ScrollToTop.android.kt +6 -0
- package/compose/src/androidMain/kotlin/vn/momo/kits/platform/OsFontScale.android.kt +7 -0
- package/compose/src/androidMain/kotlin/vn/momo/kits/platform/Platform.android.kt +150 -0
- package/compose/src/commonMain/composeResources/font/momosignature.otf +0 -0
- package/compose/src/commonMain/composeResources/font/momotrustdisplay.otf +0 -0
- package/compose/src/commonMain/composeResources/font/sfprotext_black.otf +0 -0
- package/compose/src/commonMain/composeResources/font/sfprotext_black.ttf +0 -0
- package/compose/src/commonMain/composeResources/font/sfprotext_bold.ttf +0 -0
- package/compose/src/commonMain/composeResources/font/sfprotext_heavy.ttf +0 -0
- package/compose/src/commonMain/composeResources/font/sfprotext_light.ttf +0 -0
- package/compose/src/commonMain/composeResources/font/sfprotext_medium.ttf +0 -0
- package/compose/src/commonMain/composeResources/font/sfprotext_regular.ttf +0 -0
- package/compose/src/commonMain/composeResources/font/sfprotext_semibold.ttf +0 -0
- package/compose/src/commonMain/composeResources/font/sfprotext_thin.otf +0 -0
- package/compose/src/commonMain/composeResources/font/sfprotext_thin.ttf +0 -0
- package/compose/src/commonMain/composeResources/font/sfprotext_ultralight.otf +0 -0
- package/compose/src/commonMain/composeResources/font/sfprotext_ultralight.ttf +0 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/AnimationSearchInput.kt +52 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/Context.kt +106 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/FloatingButton.kt +183 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/Header.kt +207 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderAnimated.kt +39 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderBackground.kt +86 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderDefault.kt +76 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderExtended.kt +76 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderRight.kt +293 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderTitle.kt +33 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/LiteScreen.kt +826 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/Localize.kt +269 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/NavigationContainer.kt +110 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/Screen.kt +378 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/WidgetContainer.kt +56 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/useHeaderSearchAnimation.kt +69 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Avatar.kt +157 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Badge.kt +82 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/BadgeDot.kt +32 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/BadgeRibbon.kt +338 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/BaselineView.kt +175 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Button.kt +356 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Carousel.kt +113 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/CheckBox.kt +89 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Chip.kt +128 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Collapse.kt +209 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/CupertinoOverscroll.kt +542 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Divider.kt +23 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Icon.kt +76 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/IconButton.kt +125 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Image.kt +231 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Information.kt +112 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Input.kt +477 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputDropDown.kt +114 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputMoney.kt +214 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputOTP.kt +240 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputPhoneNumber.kt +216 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputSearch.kt +259 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputTextArea.kt +182 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/LazyColumnWithBouncing.kt +343 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Loader.kt +108 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationDot.kt +56 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationNumber.kt +41 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationScroll.kt +84 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/PaginationWhiteDot.kt +40 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/PopupNotify.kt +328 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/PopupPromotion.kt +97 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/ProgressInfo.kt +310 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Radio.kt +59 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Rating.kt +87 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/ScaleSizeScope.kt +21 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Skeleton.kt +90 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Slider.kt +323 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Stepper.kt +217 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Steps.kt +473 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/SuggestAction.kt +122 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Swipe.kt +199 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Switch.kt +91 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/TabView.kt +470 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Tag.kt +88 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Text.kt +131 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Title.kt +203 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Tooltip.kt +498 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/TrustBanner.kt +175 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Uploader.kt +182 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePicker.kt +193 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePickerTypes.kt +29 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePickerUtils.kt +234 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/WheelPicker.kt +188 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/const/Colors.kt +325 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/const/KitFontScale.kt +22 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/const/Radius.kt +12 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/const/Spacing.kt +16 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/const/Theme.kt +188 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/const/Typography.kt +276 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Card.kt +52 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Item.kt +38 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Section.kt +39 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/AutomationId.kt +52 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Clickable.kt +66 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Conditional.kt +11 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/DeprecatedModifier.kt +104 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Shadow.kt +48 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Size.kt +51 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/BottomSheet.kt +299 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/ModalScreen.kt +129 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/Navigation.kt +103 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/NavigationContainer.kt +172 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/Navigator.kt +372 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/ScrollToTop.kt +8 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/StackScreen.kt +589 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTab.kt +156 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTabBar.kt +225 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/CurvedContainer.kt +86 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/FloatingButton.kt +169 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/Header.kt +320 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderBackground.kt +81 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderRight.kt +309 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderTitle.kt +34 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderUser.kt +360 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/SnackBar.kt +132 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/tracking/ScreenTracker.kt +127 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/platform/ComposeLottieAnimation.kt +91 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/platform/OsFontScale.kt +9 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/platform/Platform.kt +69 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Icons.kt +1329 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Resources.kt +55 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Tracking.kt +15 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/utils/Utils.kt +105 -0
- package/compose/src/iosMain/kotlin/vn/momo/kits/navigation/ScrollToTop.ios.kt +32 -0
- package/compose/src/iosMain/kotlin/vn/momo/kits/platform/OsFontScale.ios.kt +66 -0
- package/compose/src/iosMain/kotlin/vn/momo/kits/platform/Platform.ios.kt +207 -0
- package/gradle/libs.versions.toml +69 -0
- package/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/gradle/wrapper/gradle-wrapper.properties +8 -0
- package/gradle.properties +26 -0
- package/gradlew +252 -0
- package/gradlew.bat +94 -0
- package/ios/Application/ApplicationEnvironment.swift +14 -6
- package/ios/Application/LanguageSource.swift +93 -0
- package/ios/Application/Localize.swift +73 -4
- package/ios/Application/LocalizeModifier.swift +30 -0
- package/ios/Application/Navigation/NavigationContainer.swift +28 -18
- package/ios/Application/Navigation/Navigator.swift +121 -53
- package/ios/Application/Navigation/NavigatorManager.swift +49 -0
- package/ios/Application/Navigation/component/NavigationFooter.swift +90 -0
- package/ios/Application/StackScreen.swift +19 -28
- package/ios/Badge/Badge.swift +2 -1
- package/ios/Badge/BadgeRibbon.swift +6 -2
- package/ios/Button/Button.swift +41 -61
- package/ios/Chip/Chip.swift +6 -5
- package/ios/Icon/Icon.swift +13 -4
- package/ios/Input/ErrorView.swift +2 -1
- package/ios/Input/Input.swift +9 -2
- package/ios/Input/InputPhoneNumber.swift +2 -1
- package/ios/Input/InputSearch.swift +3 -2
- package/ios/Input/InputTextArea.swift +6 -1
- package/ios/InputMoney/InputMoney.swift +5 -2
- package/ios/InputOTP/InputOTP.swift +2 -1
- package/ios/Layout/GridContext.swift +30 -0
- package/ios/Layout/Item.swift +42 -0
- package/ios/Layout/Section.swift +134 -0
- package/ios/Popup/PopupNotify.swift +2 -1
- package/ios/ProgressInfo/ProgressInfo.swift +4 -3
- package/ios/Rating/Rating.swift +2 -1
- package/ios/Stepper/Stepper.swift +2 -1
- package/ios/SuggestAction/SuggestAction.swift +3 -2
- package/ios/Tag/Tag.swift +2 -1
- package/ios/Template/TrustBanner/TrustBanner.swift +4 -2
- package/ios/Title/Title.swift +3 -2
- package/ios/Tooltip/Tooltip.swift +2 -1
- package/ios/Typography/FontScale.swift +103 -0
- package/ios/Typography/FontScaleStore.swift +52 -13
- package/ios/Typography/Text.swift +12 -29
- package/ios/Typography/Typography.swift +66 -86
- package/ios/native-kits.podspec +2 -1
- package/ios-demo/MoMoUIKitsDemo.podspec +1 -1
- package/ios-demo/README.md +120 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/AvatarDemo.swift +87 -73
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/BadgeDemo.swift +55 -249
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ButtonDemo.swift +90 -82
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/CarouselDemo.swift +74 -104
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/CheckboxDemo.swift +47 -50
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ChipDemo.swift +63 -7
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/CollapseDemo.swift +90 -81
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/DateTimePickerDemo.swift +73 -97
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/DemoScreen.swift +420 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/DividerDemo.swift +46 -4
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/Home.swift +54 -57
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/IconButtonDemo.swift +80 -45
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/IconDemo.swift +81 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ImageDemo.swift +49 -62
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InformationDemo.swift +66 -116
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputDemo.swift +104 -98
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputDropDownDemo.swift +76 -118
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputMoneyDemo.swift +73 -86
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputOTPDemo.swift +69 -54
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputPhoneNumberDemo.swift +74 -54
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputSearchDemo.swift +73 -20
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/InputTextAreaDemo.swift +68 -38
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/LoaderDemo.swift +55 -52
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/LocalizeDemo.swift +51 -4
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/NavigationDemo.swift +14 -2
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/PaginationDemo.swift +47 -51
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/PlaygroundData.swift +76 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/PopupNotifyDemo.swift +67 -93
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/PopupPromotionDemo.swift +34 -43
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ProgressInfoDemo.swift +83 -71
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/RadioDemo.swift +55 -23
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/RatingDemo.swift +58 -46
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SectionDemo.swift +83 -0
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SkeletonDemo.swift +41 -12
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SliderDemo.swift +67 -127
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SnackBarDemo.swift +54 -110
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/StepperDemo.swift +69 -79
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/StepsDemo.swift +78 -58
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SuggestActionDemo.swift +76 -65
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SwipeDemo.swift +82 -127
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/SwitchDemo.swift +44 -19
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TabViewDemo.swift +92 -168
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TagDemo.swift +79 -27
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/ThemeDemo.swift +0 -1
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TitleDemo.swift +87 -92
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TooltipDemo.swift +94 -163
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/TypographyDemo.swift +70 -70
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/UploaderDemo.swift +68 -114
- package/ios-demo/Sources/MoMoUIKitsDemo/SwiftUIDemoBrowserView.swift +3 -1
- package/local.properties +8 -0
- package/package.json +2 -2
- package/settings.gradle.kts +64 -0
- package/.codegraph/.gitignore +0 -5
- package/example/ios/Example.xcodeproj/xcuserdata/sonnguyen.xcuserdatad/xcschemes/Example.xcscheme +0 -32
- package/example/ios/Example.xcodeproj/xcuserdata/sonnguyen.xcuserdatad/xcschemes/xcschememanagement.plist +0 -14
- package/example/ios/Example.xcworkspace/xcuserdata/sonnguyen.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/example/ios/Example.xcworkspace/xcuserdata/sonnguyen.xcuserdatad/WorkspaceSettings.xcsettings +0 -16
- package/example/ios/Example.xcworkspace/xcuserdata/sonnguyen.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +0 -6
- package/example/ios/Example.xcworkspace/xcuserdata/sonnguyen.xcuserdatad/xcschemes/xcschememanagement.plist +0 -5
- package/example/ios/Pods/Pods.xcodeproj/xcuserdata/sonnguyen.xcuserdatad/xcschemes/MoMoUIKits.xcscheme +0 -58
- package/example/ios/Pods/Pods.xcodeproj/xcuserdata/sonnguyen.xcuserdatad/xcschemes/Pods-Example.xcscheme +0 -58
- package/example/ios/Pods/Pods.xcodeproj/xcuserdata/sonnguyen.xcuserdatad/xcschemes/SDWebImage.xcscheme +0 -58
- package/example/ios/Pods/Pods.xcodeproj/xcuserdata/sonnguyen.xcuserdatad/xcschemes/SDWebImageSwiftUI.xcscheme +0 -58
- package/example/ios/Pods/Pods.xcodeproj/xcuserdata/sonnguyen.xcuserdatad/xcschemes/SkeletonUI.xcscheme +0 -58
- package/example/ios/Pods/Pods.xcodeproj/xcuserdata/sonnguyen.xcuserdatad/xcschemes/lottie-ios-LottiePrivacyInfo.xcscheme +0 -58
- package/example/ios/Pods/Pods.xcodeproj/xcuserdata/sonnguyen.xcuserdatad/xcschemes/lottie-ios.xcscheme +0 -58
- package/example/ios/Pods/Pods.xcodeproj/xcuserdata/sonnguyen.xcuserdatad/xcschemes/xcschememanagement.plist +0 -60
|
@@ -2,72 +2,87 @@
|
|
|
2
2
|
// InputOTPDemo.swift
|
|
3
3
|
// Example
|
|
4
4
|
//
|
|
5
|
-
//
|
|
6
|
-
// error message, error spacing, and a fixed-length numeric variant.
|
|
5
|
+
// Preview + Playground demo for InputOTP.
|
|
7
6
|
//
|
|
8
7
|
|
|
9
8
|
import MoMoUIKits
|
|
10
9
|
import SwiftUI
|
|
11
10
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
// Component-specific option maps (mirror otpLengthList / otpDataTypeList in DemoScreen.kt).
|
|
12
|
+
private let otpLengthList: [PlaygroundOption] = [
|
|
13
|
+
.init("2", 2), .init("4", 4), .init("6", 6), .init("8", 8), .init("10", 10),
|
|
14
|
+
]
|
|
15
|
+
private let otpDataTypeList: [PlaygroundOption] = [
|
|
16
|
+
.init("number", "number"), .init("string", "string"),
|
|
17
|
+
]
|
|
18
18
|
|
|
19
|
+
struct InputOTPDemo: View {
|
|
19
20
|
var body: some View {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
section("Placeholder") {
|
|
30
|
-
InputOTP(
|
|
31
|
-
value: $value2,
|
|
32
|
-
floatingValue: "",
|
|
33
|
-
placeholder: "Placeholder text"
|
|
34
|
-
)
|
|
35
|
-
}
|
|
21
|
+
if #available(iOS 16.0, *) {
|
|
22
|
+
DemoScreen(preview: { InputOTPPreview() }, playground: { InputOTPPlayground() })
|
|
23
|
+
} else {
|
|
24
|
+
Text("Requires iOS 16+").padding()
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
36
28
|
|
|
37
|
-
|
|
38
|
-
InputOTP(
|
|
39
|
-
value: $value3,
|
|
40
|
-
errorMessage: "Error",
|
|
41
|
-
floatingValue: ""
|
|
42
|
-
)
|
|
43
|
-
}
|
|
29
|
+
// MARK: - Preview
|
|
44
30
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
)
|
|
51
|
-
}
|
|
31
|
+
private struct InputOTPPreview: View {
|
|
32
|
+
@State private var v1 = ""
|
|
33
|
+
@State private var v2 = ""
|
|
34
|
+
@State private var v3 = ""
|
|
35
|
+
@State private var v4 = ""
|
|
52
36
|
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
37
|
+
var body: some View {
|
|
38
|
+
BasicColumnBox("Floating Value", alignment: .leading) {
|
|
39
|
+
InputOTP(value: $v1, floatingValue: "Nhập mã xác thực OTP")
|
|
40
|
+
}
|
|
41
|
+
BasicColumnBox("Placeholder", alignment: .leading) {
|
|
42
|
+
InputOTP(value: $v2, floatingValue: "", placeholder: "Placeholder text")
|
|
43
|
+
}
|
|
44
|
+
BasicColumnBox("Error Message", alignment: .leading) {
|
|
45
|
+
InputOTP(value: $v3, errorMessage: "Error", floatingValue: "")
|
|
46
|
+
}
|
|
47
|
+
BasicColumnBox("Length 6, number", alignment: .leading) {
|
|
48
|
+
InputOTP(value: $v4, length: 6, floatingValue: "", dataType: "number")
|
|
63
49
|
}
|
|
64
50
|
}
|
|
51
|
+
}
|
|
65
52
|
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
53
|
+
// MARK: - Playground
|
|
54
|
+
|
|
55
|
+
@available(iOS 16.0, *)
|
|
56
|
+
private struct InputOTPPlayground: View {
|
|
57
|
+
@State private var value = ""
|
|
58
|
+
@State private var floatingValue = "Label"
|
|
59
|
+
@State private var placeholder = ""
|
|
60
|
+
@State private var errorMessage = ""
|
|
61
|
+
@State private var length: PlaygroundOption? = otpLengthList.first { $0.key == "6" }
|
|
62
|
+
@State private var dataType: PlaygroundOption? = otpDataTypeList.first { $0.key == "number" }
|
|
63
|
+
@State private var errorSpacing = false
|
|
64
|
+
|
|
65
|
+
var body: some View {
|
|
66
|
+
PlaygroundTab(
|
|
67
|
+
component: {
|
|
68
|
+
InputOTP(
|
|
69
|
+
value: $value,
|
|
70
|
+
length: length?.value as? Int,
|
|
71
|
+
errorMessage: errorMessage,
|
|
72
|
+
errorSpacing: errorSpacing,
|
|
73
|
+
floatingValue: floatingValue,
|
|
74
|
+
placeholder: placeholder,
|
|
75
|
+
dataType: (dataType?.value as? String) ?? "number"
|
|
76
|
+
)
|
|
77
|
+
},
|
|
78
|
+
params: [
|
|
79
|
+
.string("FloatingValue", $floatingValue),
|
|
80
|
+
.string("Placeholder", $placeholder),
|
|
81
|
+
.string("ErrorMessage", $errorMessage),
|
|
82
|
+
.radio("Length", otpLengthList, $length),
|
|
83
|
+
.radio("DataType", otpDataTypeList, $dataType),
|
|
84
|
+
.checkbox("ErrorSpacing", $errorSpacing),
|
|
85
|
+
]
|
|
86
|
+
)
|
|
72
87
|
}
|
|
73
88
|
}
|
|
@@ -2,67 +2,87 @@
|
|
|
2
2
|
// InputPhoneNumberDemo.swift
|
|
3
3
|
// Example
|
|
4
4
|
//
|
|
5
|
-
//
|
|
5
|
+
// Preview + Playground demo for InputPhoneNumber.
|
|
6
6
|
//
|
|
7
7
|
|
|
8
|
-
import SwiftUI
|
|
9
8
|
import MoMoUIKits
|
|
9
|
+
import SwiftUI
|
|
10
10
|
|
|
11
11
|
public struct InputPhoneNumberDemo: View {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
@State private var textValue3 = ""
|
|
15
|
-
@State private var textValue4 = ""
|
|
16
|
-
@State private var textValue5 = ""
|
|
17
|
-
@State private var textValue6 = ""
|
|
18
|
-
@State private var textValue7 = ""
|
|
19
|
-
@State private var textValue8 = ""
|
|
20
|
-
@State private var textValue9 = ""
|
|
21
|
-
|
|
12
|
+
public init() {}
|
|
13
|
+
|
|
22
14
|
public var body: some View {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
Group {
|
|
51
|
-
Text("Loading")
|
|
52
|
-
.font(.headerText1)
|
|
53
|
-
|
|
54
|
-
InputPhoneNumber(text: $textValue8, placeholder: "Loading", loading: true)
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
Group {
|
|
58
|
-
Text("Trailing Icon")
|
|
59
|
-
.font(.headerText1)
|
|
60
|
-
|
|
61
|
-
InputPhoneNumber(text: $textValue9, placeholder: "Font Weight", rightIcon: "24_ic_public", rightIconColor: Colors.pink03)
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
.padding()
|
|
15
|
+
if #available(iOS 16.0, *) {
|
|
16
|
+
DemoScreen(preview: { InputPhoneNumberPreview() }, playground: { InputPhoneNumberPlayground() })
|
|
17
|
+
} else {
|
|
18
|
+
Text("Requires iOS 16+").padding()
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
// MARK: - Preview
|
|
24
|
+
|
|
25
|
+
private struct InputPhoneNumberPreview: View {
|
|
26
|
+
@State private var t1 = ""
|
|
27
|
+
@State private var t2 = ""
|
|
28
|
+
@State private var t3 = ""
|
|
29
|
+
@State private var t4 = ""
|
|
30
|
+
@State private var t5 = ""
|
|
31
|
+
|
|
32
|
+
var body: some View {
|
|
33
|
+
BasicColumnBox("Size", alignment: .leading) {
|
|
34
|
+
InputPhoneNumber(text: $t1, placeholder: "Small", size: .small)
|
|
35
|
+
InputPhoneNumber(text: $t2, placeholder: "Large", size: .large)
|
|
36
|
+
}
|
|
37
|
+
BasicColumnBox("Hint text", alignment: .leading) {
|
|
38
|
+
InputPhoneNumber(text: $t3, placeholder: "Enter here", hintText: "Hint text")
|
|
39
|
+
}
|
|
40
|
+
BasicColumnBox("Error", alignment: .leading) {
|
|
41
|
+
InputPhoneNumber(text: $t4, placeholder: "Enter here", error: "error message")
|
|
65
42
|
}
|
|
43
|
+
BasicColumnBox("Trailing Icon", alignment: .leading) {
|
|
44
|
+
InputPhoneNumber(text: $t5, placeholder: "Phone", rightIcon: "24_ic_public", rightIconColor: Colors.pink03)
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
// MARK: - Playground
|
|
50
|
+
|
|
51
|
+
@available(iOS 16.0, *)
|
|
52
|
+
private struct InputPhoneNumberPlayground: View {
|
|
53
|
+
@State private var text = ""
|
|
54
|
+
@State private var placeholder = "0123456789"
|
|
55
|
+
@State private var hintText = ""
|
|
56
|
+
@State private var error = ""
|
|
57
|
+
@State private var size: PlaygroundOption? = inputSizeList.first { $0.key == "small" }
|
|
58
|
+
@State private var rightIcon: PlaygroundOption?
|
|
59
|
+
@State private var loading = false
|
|
60
|
+
@State private var required = false
|
|
61
|
+
|
|
62
|
+
var body: some View {
|
|
63
|
+
PlaygroundTab(
|
|
64
|
+
component: {
|
|
65
|
+
InputPhoneNumber(
|
|
66
|
+
text: $text,
|
|
67
|
+
placeholder: placeholder,
|
|
68
|
+
size: (size?.value as? InputSize) ?? .small,
|
|
69
|
+
hintText: hintText,
|
|
70
|
+
error: error,
|
|
71
|
+
loading: loading,
|
|
72
|
+
required: required,
|
|
73
|
+
rightIcon: (rightIcon?.value as? String) ?? ""
|
|
74
|
+
)
|
|
75
|
+
},
|
|
76
|
+
params: [
|
|
77
|
+
.string("Placeholder", $placeholder),
|
|
78
|
+
.string("HintText", $hintText),
|
|
79
|
+
.string("Error", $error),
|
|
80
|
+
.radio("Size", inputSizeList, $size),
|
|
81
|
+
.option("RightIcon", playgroundIcons, $rightIcon),
|
|
82
|
+
.checkbox("Loading", $loading),
|
|
83
|
+
.checkbox("Required", $required),
|
|
84
|
+
]
|
|
85
|
+
)
|
|
66
86
|
}
|
|
67
87
|
}
|
|
68
88
|
|
|
@@ -2,31 +2,84 @@
|
|
|
2
2
|
// InputSearchDemo.swift
|
|
3
3
|
// Example
|
|
4
4
|
//
|
|
5
|
-
//
|
|
5
|
+
// Preview + Playground demo for InputSearch.
|
|
6
6
|
//
|
|
7
7
|
|
|
8
|
-
import SwiftUI
|
|
9
8
|
import MoMoUIKits
|
|
10
|
-
|
|
11
|
-
// Your imports remain the same
|
|
9
|
+
import SwiftUI
|
|
12
10
|
|
|
13
11
|
public struct InputSearchDemo: View {
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
public init() {}
|
|
13
|
+
|
|
16
14
|
public var body: some View {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
15
|
+
if #available(iOS 16.0, *) {
|
|
16
|
+
DemoScreen(preview: { InputSearchPreview() }, playground: { InputSearchPlayground() })
|
|
17
|
+
} else {
|
|
18
|
+
Text("Requires iOS 16+").padding()
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
// MARK: - Preview
|
|
24
|
+
|
|
25
|
+
private struct InputSearchPreview: View {
|
|
26
|
+
@State private var t1 = ""
|
|
27
|
+
@State private var t2 = ""
|
|
28
|
+
@State private var t3 = ""
|
|
29
|
+
|
|
30
|
+
var body: some View {
|
|
31
|
+
BasicColumnBox("Default", alignment: .leading) {
|
|
32
|
+
InputSearch(text: $t1, placeholder: "Search")
|
|
33
|
+
.frame(height: 40)
|
|
34
|
+
}
|
|
35
|
+
BasicColumnBox("With cancel button", alignment: .leading) {
|
|
36
|
+
InputSearch(text: $t2, buttonText: "Huỷ", showButtonText: true, placeholder: "Search")
|
|
37
|
+
.frame(height: 40)
|
|
38
|
+
}
|
|
39
|
+
BasicColumnBox("Disabled", alignment: .leading) {
|
|
40
|
+
InputSearch(text: $t3, placeholder: "Search", disabled: true)
|
|
41
|
+
.frame(height: 40)
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// MARK: - Playground
|
|
47
|
+
|
|
48
|
+
@available(iOS 16.0, *)
|
|
49
|
+
private struct InputSearchPlayground: View {
|
|
50
|
+
@State private var text = ""
|
|
51
|
+
@State private var placeholder = "Search"
|
|
52
|
+
@State private var buttonText = "Huỷ"
|
|
53
|
+
@State private var error = ""
|
|
54
|
+
@State private var showButtonText = false
|
|
55
|
+
@State private var showBorder = true
|
|
56
|
+
@State private var disabled = false
|
|
57
|
+
@State private var loading = false
|
|
58
|
+
|
|
59
|
+
var body: some View {
|
|
60
|
+
PlaygroundTab(
|
|
61
|
+
component: {
|
|
62
|
+
InputSearch(
|
|
63
|
+
text: $text,
|
|
64
|
+
buttonText: buttonText,
|
|
65
|
+
showButtonText: showButtonText,
|
|
66
|
+
showBorder: showBorder,
|
|
67
|
+
placeholder: placeholder,
|
|
68
|
+
error: error,
|
|
69
|
+
disabled: disabled,
|
|
70
|
+
loading: loading
|
|
71
|
+
)
|
|
72
|
+
.frame(height: 40)
|
|
73
|
+
},
|
|
74
|
+
params: [
|
|
75
|
+
.string("Placeholder", $placeholder),
|
|
76
|
+
.string("ButtonText", $buttonText),
|
|
77
|
+
.string("Error", $error),
|
|
78
|
+
.checkbox("ShowButtonText", $showButtonText),
|
|
79
|
+
.checkbox("ShowBorder", $showBorder),
|
|
80
|
+
.checkbox("Disabled", $disabled),
|
|
81
|
+
.checkbox("Loading", $loading),
|
|
82
|
+
]
|
|
83
|
+
)
|
|
31
84
|
}
|
|
32
85
|
}
|
|
@@ -2,56 +2,86 @@
|
|
|
2
2
|
// InputTextAreaDemo.swift
|
|
3
3
|
// Example
|
|
4
4
|
//
|
|
5
|
-
//
|
|
5
|
+
// Preview + Playground demo for InputTextArea.
|
|
6
6
|
//
|
|
7
|
-
|
|
7
|
+
|
|
8
8
|
import MoMoUIKits
|
|
9
|
+
import SwiftUI
|
|
9
10
|
|
|
10
11
|
struct InputTextAreaDemo: View {
|
|
11
12
|
var body: some View {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
.font(.headline)
|
|
17
|
-
|
|
18
|
-
TextAreaPreview()
|
|
19
|
-
|
|
20
|
-
// Text("Playground")
|
|
21
|
-
// .font(.headline)
|
|
22
|
-
|
|
23
|
-
// TextAreaPlayground()
|
|
24
|
-
}
|
|
25
|
-
.padding()
|
|
26
|
-
}
|
|
27
|
-
|
|
13
|
+
if #available(iOS 16.0, *) {
|
|
14
|
+
DemoScreen(preview: { TextAreaPreview() }, playground: { TextAreaPlayground() })
|
|
15
|
+
} else {
|
|
16
|
+
Text("Requires iOS 16+").padding()
|
|
28
17
|
}
|
|
29
18
|
}
|
|
30
19
|
}
|
|
31
20
|
|
|
32
|
-
|
|
21
|
+
// MARK: - Preview
|
|
22
|
+
|
|
23
|
+
private struct TextAreaPreview: View {
|
|
33
24
|
@State private var text = ""
|
|
34
|
-
let url = "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/momomain_momo.png"
|
|
35
|
-
|
|
25
|
+
private let url = "https://img.mservice.io/momo_app_v2/new_version/img/appx_icon/momomain_momo.png"
|
|
26
|
+
|
|
36
27
|
var body: some View {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
InputTextArea(text: .constant("Error"),
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
InputTextArea(text: .constant("Error"),
|
|
49
|
-
errorSpacing: true)
|
|
50
|
-
|
|
51
|
-
Text("Disabled")
|
|
52
|
-
InputTextArea(text: .constant("Disabled"),
|
|
53
|
-
disabled: true)
|
|
28
|
+
BasicColumnBox("Floating Value", alignment: .leading) {
|
|
29
|
+
InputTextArea(text: $text, floatingValue: "Momo", floatingIcon: url, floatingIconColor: Colors.pink03)
|
|
30
|
+
}
|
|
31
|
+
BasicColumnBox("Error", alignment: .leading) {
|
|
32
|
+
InputTextArea(text: .constant("Error"), error: "Error")
|
|
33
|
+
}
|
|
34
|
+
BasicColumnBox("Error Spacing", alignment: .leading) {
|
|
35
|
+
InputTextArea(text: .constant("Error"), errorSpacing: true)
|
|
36
|
+
}
|
|
37
|
+
BasicColumnBox("Disabled", alignment: .leading) {
|
|
38
|
+
InputTextArea(text: .constant("Disabled"), disabled: true)
|
|
54
39
|
}
|
|
55
40
|
}
|
|
56
41
|
}
|
|
57
42
|
|
|
43
|
+
// MARK: - Playground
|
|
44
|
+
|
|
45
|
+
@available(iOS 16.0, *)
|
|
46
|
+
private struct TextAreaPlayground: View {
|
|
47
|
+
@State private var text = ""
|
|
48
|
+
@State private var placeholder = "Enter text"
|
|
49
|
+
@State private var floatingValue = "Label"
|
|
50
|
+
@State private var error = ""
|
|
51
|
+
@State private var maxLength = "200"
|
|
52
|
+
@State private var height: Double = 120
|
|
53
|
+
@State private var disabled = false
|
|
54
|
+
@State private var errorSpacing = false
|
|
55
|
+
@State private var loading = false
|
|
56
|
+
@State private var required = false
|
|
57
|
+
|
|
58
|
+
var body: some View {
|
|
59
|
+
PlaygroundTab(
|
|
60
|
+
component: {
|
|
61
|
+
InputTextArea(
|
|
62
|
+
text: $text,
|
|
63
|
+
maxLength: Int(maxLength) ?? 200,
|
|
64
|
+
height: CGFloat(height),
|
|
65
|
+
floatingValue: floatingValue,
|
|
66
|
+
placeholder: placeholder,
|
|
67
|
+
error: error,
|
|
68
|
+
errorSpacing: errorSpacing,
|
|
69
|
+
disabled: disabled,
|
|
70
|
+
loading: loading,
|
|
71
|
+
required: required
|
|
72
|
+
)
|
|
73
|
+
},
|
|
74
|
+
params: [
|
|
75
|
+
.string("Placeholder", $placeholder),
|
|
76
|
+
.string("FloatingValue", $floatingValue),
|
|
77
|
+
.string("Error", $error),
|
|
78
|
+
.number("MaxLength", $maxLength),
|
|
79
|
+
.slider("Height", $height, min: 60, max: 240, step: 10),
|
|
80
|
+
.checkbox("Disabled", $disabled),
|
|
81
|
+
.checkbox("ErrorSpacing", $errorSpacing),
|
|
82
|
+
.checkbox("Loading", $loading),
|
|
83
|
+
.checkbox("Required", $required),
|
|
84
|
+
]
|
|
85
|
+
)
|
|
86
|
+
}
|
|
87
|
+
}
|
|
@@ -2,69 +2,72 @@
|
|
|
2
2
|
// LoaderDemo.swift
|
|
3
3
|
// Example
|
|
4
4
|
//
|
|
5
|
-
//
|
|
5
|
+
// Preview + Playground demo for Loader / DotLoader / SpinnerLoader / ProgressBar.
|
|
6
6
|
//
|
|
7
7
|
|
|
8
|
-
import SwiftUI
|
|
9
8
|
import MoMoUIKits
|
|
9
|
+
import SwiftUI
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
private let loaderTypeList: [PlaygroundOption] = [
|
|
12
|
+
.init("dot", LoaderType.dot),
|
|
13
|
+
.init("spinner", LoaderType.spinner),
|
|
14
|
+
]
|
|
13
15
|
|
|
16
|
+
struct LoaderDemo: View {
|
|
14
17
|
var body: some View {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
}
|
|
20
|
-
row("DotLoader with tint") {
|
|
21
|
-
DotLoader(tintColor: Colors.pink03)
|
|
22
|
-
}
|
|
23
|
-
row("SpinnerLoader (default)") {
|
|
24
|
-
SpinnerLoader()
|
|
25
|
-
}
|
|
26
|
-
row("SpinnerLoader with tint") {
|
|
27
|
-
SpinnerLoader(tintColor: Colors.pink03)
|
|
28
|
-
}
|
|
29
|
-
row("Loader(type: .dot)") {
|
|
30
|
-
Loader(type: .dot)
|
|
31
|
-
}
|
|
32
|
-
row("Loader(type: .spinner)") {
|
|
33
|
-
Loader(type: .spinner, tintColor: Colors.pink03)
|
|
34
|
-
}
|
|
35
|
-
row("ProgressBar 0%") {
|
|
36
|
-
ProgressBar(percent: 0)
|
|
37
|
-
}
|
|
38
|
-
row("ProgressBar 40%") {
|
|
39
|
-
ProgressBar(percent: 40)
|
|
40
|
-
}
|
|
41
|
-
row("ProgressBar 100%") {
|
|
42
|
-
ProgressBar(percent: 100)
|
|
43
|
-
}
|
|
44
|
-
row("ProgressBar with tint (65%)") {
|
|
45
|
-
ProgressBar(percent: 65, color: Colors.pink03)
|
|
46
|
-
}
|
|
47
|
-
VStack(alignment: .leading, spacing: 8) {
|
|
48
|
-
Text("ProgressBar (interactive: \(Int(progress))%)")
|
|
49
|
-
.font(.subheadline)
|
|
50
|
-
ProgressBar(percent: progress, color: Colors.pink03)
|
|
51
|
-
Slider(value: $progress, in: 0...100)
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
.padding()
|
|
18
|
+
if #available(iOS 16.0, *) {
|
|
19
|
+
DemoScreen(preview: { LoaderPreview() }, playground: { LoaderPlayground() })
|
|
20
|
+
} else {
|
|
21
|
+
Text("Requires iOS 16+").padding()
|
|
55
22
|
}
|
|
56
23
|
}
|
|
24
|
+
}
|
|
57
25
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
26
|
+
// MARK: - Preview
|
|
27
|
+
|
|
28
|
+
private struct LoaderPreview: View {
|
|
29
|
+
var body: some View {
|
|
30
|
+
BasicColumnBox("DotLoader", alignment: .leading) {
|
|
31
|
+
DotLoader()
|
|
32
|
+
DotLoader(tintColor: Colors.pink03)
|
|
33
|
+
}
|
|
34
|
+
BasicColumnBox("SpinnerLoader", alignment: .leading) {
|
|
35
|
+
SpinnerLoader()
|
|
36
|
+
SpinnerLoader(tintColor: Colors.pink03)
|
|
37
|
+
}
|
|
38
|
+
BasicColumnBox("ProgressBar", alignment: .leading) {
|
|
39
|
+
ProgressBar(percent: 0)
|
|
40
|
+
ProgressBar(percent: 40)
|
|
41
|
+
ProgressBar(percent: 100)
|
|
42
|
+
ProgressBar(percent: 65, color: Colors.pink03)
|
|
64
43
|
}
|
|
65
44
|
}
|
|
66
45
|
}
|
|
67
46
|
|
|
68
|
-
|
|
69
|
-
|
|
47
|
+
// MARK: - Playground
|
|
48
|
+
|
|
49
|
+
@available(iOS 16.0, *)
|
|
50
|
+
private struct LoaderPlayground: View {
|
|
51
|
+
@State private var type: PlaygroundOption? = loaderTypeList.first { $0.key == "dot" }
|
|
52
|
+
@State private var tint: PlaygroundOption? = playgroundColors.first { $0.key == "pink03" }
|
|
53
|
+
@State private var percent: Double = 65
|
|
54
|
+
|
|
55
|
+
var body: some View {
|
|
56
|
+
PlaygroundTab(
|
|
57
|
+
component: {
|
|
58
|
+
VStack(alignment: .leading, spacing: Spacing.L) {
|
|
59
|
+
Loader(
|
|
60
|
+
type: (type?.value as? LoaderType) ?? .dot,
|
|
61
|
+
tintColor: tint?.value as? Color
|
|
62
|
+
)
|
|
63
|
+
ProgressBar(percent: CGFloat(percent), color: tint?.value as? Color)
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
params: [
|
|
67
|
+
.radio("Type", loaderTypeList, $type),
|
|
68
|
+
.color("TintColor", playgroundColors, $tint),
|
|
69
|
+
.slider("ProgressBar percent", $percent, min: 0, max: 100, step: 1),
|
|
70
|
+
]
|
|
71
|
+
)
|
|
72
|
+
}
|
|
70
73
|
}
|