@momo-kits/native-kits 0.162.2-beta.1 → 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/build.gradle.kts +11 -0
- package/compose/build.gradle.kts +186 -0
- package/compose/build.gradle.kts.backup +186 -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/Platform.android.kt +123 -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 +57 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/Context.kt +109 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/FloatingButton.kt +201 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/Header.kt +222 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/HeaderAnimated.kt +48 -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 +305 -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 +921 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/NavigationContainer.kt +121 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/application/Screen.kt +403 -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 +85 -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 +340 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/BaselineView.kt +198 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Button.kt +357 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Carousel.kt +123 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/CheckBox.kt +94 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Chip.kt +136 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Collapse.kt +224 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/CupertinoOverscroll.kt +543 -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 +148 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Image.kt +188 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Information.kt +116 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Input.kt +452 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputDropDown.kt +172 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputMoney.kt +255 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputOTP.kt +235 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/InputPhoneNumber.kt +233 -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 +241 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/LazyColumnWithBouncing.kt +364 -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 +92 -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 +352 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/PopupPromotion.kt +103 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/ProgressInfo.kt +338 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Radio.kt +70 -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 +17 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Skeleton.kt +96 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Slider.kt +348 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Stepper.kt +256 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Steps.kt +494 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/SuggestAction.kt +131 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Swipe.kt +215 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Switch.kt +96 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/TabView.kt +531 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Tag.kt +92 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Text.kt +135 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Title.kt +214 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Tooltip.kt +590 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/TrustBanner.kt +177 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/Uploader.kt +192 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/DateTimePicker.kt +205 -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 +239 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/components/datetimepicker/WheelPicker.kt +191 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/const/Colors.kt +306 -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 +285 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Card.kt +2 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Item.kt +35 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/layout/Section.kt +2 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/AutomationId.kt +57 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Clickable.kt +68 -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 +14 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/modifier/Shadow.kt +50 -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 +253 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/ModalScreen.kt +133 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/Navigation.kt +104 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/NavigationContainer.kt +145 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/Navigator.kt +345 -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 +556 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTab.kt +161 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/bottomtab/BottomTabBar.kt +243 -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 +187 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/Header.kt +315 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderBackground.kt +80 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/HeaderRight.kt +306 -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 +370 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/component/SnackBar.kt +131 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/tracking/ScreenTracker.kt +167 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/platform/ComposeLottieAnimation.kt +72 -0
- package/compose/src/commonMain/kotlin/vn/momo/kits/platform/Platform.kt +66 -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 +70 -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 +33 -0
- package/compose/src/iosMain/kotlin/vn/momo/kits/platform/Platform.ios.kt +186 -0
- package/gradle/libs.versions.toml +67 -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/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 +86 -24
- package/ios/Typography/Typography.swift +31 -6
- 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
- package/settings.gradle.kts +64 -0
- 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
- package/ios/Typography/MomoFontScale.swift +0 -36
|
@@ -0,0 +1,269 @@
|
|
|
1
|
+
//
|
|
2
|
+
// BadgeDemo.swift
|
|
3
|
+
// Example
|
|
4
|
+
//
|
|
5
|
+
// Created by sophia on 12/5/25.
|
|
6
|
+
//
|
|
7
|
+
|
|
8
|
+
import Foundation
|
|
9
|
+
import MoMoUIKits
|
|
10
|
+
import SwiftUI
|
|
11
|
+
|
|
12
|
+
// MARK: - BadgeDemo
|
|
13
|
+
|
|
14
|
+
struct BadgeDemo: View {
|
|
15
|
+
// MARK: Internal
|
|
16
|
+
|
|
17
|
+
var body: some View {
|
|
18
|
+
ScrollView {
|
|
19
|
+
VStack(alignment: .leading, spacing: 24) {
|
|
20
|
+
// MARK: - Basic Badges
|
|
21
|
+
|
|
22
|
+
VStack(alignment: .leading, spacing: 12) {
|
|
23
|
+
Text("Basic Badges")
|
|
24
|
+
.font(.headline)
|
|
25
|
+
.padding(.horizontal, 16)
|
|
26
|
+
|
|
27
|
+
VStack(spacing: 16) {
|
|
28
|
+
HStack(spacing: 16) {
|
|
29
|
+
VStack(spacing: 8) {
|
|
30
|
+
Badge()
|
|
31
|
+
Text("Default")
|
|
32
|
+
.font(.caption)
|
|
33
|
+
.foregroundColor(.gray)
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
VStack(spacing: 8) {
|
|
37
|
+
Badge(label: "9")
|
|
38
|
+
Text("Single Digit")
|
|
39
|
+
.font(.caption)
|
|
40
|
+
.foregroundColor(.gray)
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
VStack(spacing: 8) {
|
|
44
|
+
Badge(label: "99")
|
|
45
|
+
Text("Two Digits")
|
|
46
|
+
.font(.caption)
|
|
47
|
+
.foregroundColor(.gray)
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
VStack(spacing: 8) {
|
|
51
|
+
Badge(label: "999")
|
|
52
|
+
Text("99+ Format")
|
|
53
|
+
.font(.caption)
|
|
54
|
+
.foregroundColor(.gray)
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
HStack(spacing: 16) {
|
|
59
|
+
VStack(spacing: 8) {
|
|
60
|
+
Badge(label: "New")
|
|
61
|
+
Text("Text Label")
|
|
62
|
+
.font(.caption)
|
|
63
|
+
.foregroundColor(.gray)
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
VStack(spacing: 8) {
|
|
67
|
+
Badge(label: "Hot", backgroundColor: Colors.pink03)
|
|
68
|
+
Text("Custom Color")
|
|
69
|
+
.font(.caption)
|
|
70
|
+
.foregroundColor(.gray)
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
VStack(spacing: 8) {
|
|
74
|
+
Badge(label: "5", backgroundColor: Colors.green03)
|
|
75
|
+
Text("Green Badge")
|
|
76
|
+
.font(.caption)
|
|
77
|
+
.foregroundColor(.gray)
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
.padding(.horizontal, 16)
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
Divider()
|
|
85
|
+
|
|
86
|
+
// MARK: - Badge Dots
|
|
87
|
+
|
|
88
|
+
VStack(alignment: .leading, spacing: 12) {
|
|
89
|
+
Text("Badge Dots")
|
|
90
|
+
.font(.headline)
|
|
91
|
+
.padding(.horizontal, 16)
|
|
92
|
+
|
|
93
|
+
HStack(spacing: 32) {
|
|
94
|
+
VStack(spacing: 8) {
|
|
95
|
+
BadgeDot(size: .small)
|
|
96
|
+
Text("Small")
|
|
97
|
+
.font(.caption)
|
|
98
|
+
.foregroundColor(.gray)
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
VStack(spacing: 8) {
|
|
102
|
+
BadgeDot(size: .large)
|
|
103
|
+
Text("Large")
|
|
104
|
+
.font(.caption)
|
|
105
|
+
.foregroundColor(.gray)
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
.padding(.horizontal, 16)
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
Divider()
|
|
112
|
+
|
|
113
|
+
// MARK: - Badge Ribbons
|
|
114
|
+
|
|
115
|
+
VStack(alignment: .leading, spacing: 12) {
|
|
116
|
+
Text("Badge Ribbons")
|
|
117
|
+
.font(.headline)
|
|
118
|
+
.padding(.horizontal, 16)
|
|
119
|
+
|
|
120
|
+
VStack(spacing: 20) {
|
|
121
|
+
HStack(spacing: 20) {
|
|
122
|
+
VStack(spacing: 8) {
|
|
123
|
+
BadgeRibbon(position: .topLeft, label: "Top Left", isRound: true)
|
|
124
|
+
.frame(width: 150, height: 30)
|
|
125
|
+
Text("Top Left")
|
|
126
|
+
.font(.caption)
|
|
127
|
+
.foregroundColor(.gray)
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
VStack(spacing: 8) {
|
|
131
|
+
BadgeRibbon(position: .topRight, label: "Top Right", isRound: true)
|
|
132
|
+
.frame(width: 150, height: 30)
|
|
133
|
+
Text("Top Right")
|
|
134
|
+
.font(.caption)
|
|
135
|
+
.foregroundColor(.gray)
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
HStack(spacing: 20) {
|
|
140
|
+
VStack(spacing: 8) {
|
|
141
|
+
BadgeRibbon(position: .bottomLeft, label: "Bottom Left", isRound: true)
|
|
142
|
+
.frame(width: 150, height: 30)
|
|
143
|
+
Text("Bottom Left")
|
|
144
|
+
.font(.caption)
|
|
145
|
+
.foregroundColor(.gray)
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
VStack(spacing: 8) {
|
|
149
|
+
BadgeRibbon(position: .bottomRight, label: "Bottom Right", isRound: true)
|
|
150
|
+
.frame(width: 150, height: 30)
|
|
151
|
+
Text("Bottom Right")
|
|
152
|
+
.font(.caption)
|
|
153
|
+
.foregroundColor(.gray)
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
.padding(.horizontal, 16)
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
Divider()
|
|
161
|
+
|
|
162
|
+
// MARK: - Badge in Context (Real Usage Examples)
|
|
163
|
+
|
|
164
|
+
VStack(alignment: .leading, spacing: 12) {
|
|
165
|
+
Text("Real Usage Examples")
|
|
166
|
+
.font(.headline)
|
|
167
|
+
.padding(.horizontal, 16)
|
|
168
|
+
|
|
169
|
+
VStack(spacing: 16) {
|
|
170
|
+
// Notification with badge
|
|
171
|
+
HStack {
|
|
172
|
+
Image(systemName: "bell.fill")
|
|
173
|
+
.font(.system(size: 24))
|
|
174
|
+
.foregroundColor(Colors.primary)
|
|
175
|
+
|
|
176
|
+
Text("Notifications")
|
|
177
|
+
.font(.body)
|
|
178
|
+
|
|
179
|
+
Spacer()
|
|
180
|
+
|
|
181
|
+
Badge(label: "23")
|
|
182
|
+
}
|
|
183
|
+
.padding()
|
|
184
|
+
.background(Color(.systemGray6))
|
|
185
|
+
.cornerRadius(12)
|
|
186
|
+
|
|
187
|
+
// Message with badge
|
|
188
|
+
HStack {
|
|
189
|
+
Image(systemName: "message.fill")
|
|
190
|
+
.font(.system(size: 24))
|
|
191
|
+
.foregroundColor(Colors.primary)
|
|
192
|
+
|
|
193
|
+
Text("Messages")
|
|
194
|
+
.font(.body)
|
|
195
|
+
|
|
196
|
+
Spacer()
|
|
197
|
+
|
|
198
|
+
Badge(label: "5")
|
|
199
|
+
}
|
|
200
|
+
.padding()
|
|
201
|
+
.background(Color(.systemGray6))
|
|
202
|
+
.cornerRadius(12)
|
|
203
|
+
|
|
204
|
+
// Product card with ribbon
|
|
205
|
+
ZStack(alignment: .topTrailing) {
|
|
206
|
+
VStack(alignment: .leading, spacing: 8) {
|
|
207
|
+
Rectangle()
|
|
208
|
+
.fill(Color(.systemGray5))
|
|
209
|
+
.frame(height: 120)
|
|
210
|
+
.cornerRadius(8)
|
|
211
|
+
|
|
212
|
+
Text("Product Name")
|
|
213
|
+
.font(.headline)
|
|
214
|
+
|
|
215
|
+
Text("$99.99")
|
|
216
|
+
.font(.subheadline)
|
|
217
|
+
.foregroundColor(.gray)
|
|
218
|
+
}
|
|
219
|
+
.padding()
|
|
220
|
+
.background(Color(.systemGray6))
|
|
221
|
+
.cornerRadius(12)
|
|
222
|
+
|
|
223
|
+
BadgeRibbon(position: .topRight, label: "NEW")
|
|
224
|
+
.frame(width: 60, height: 40)
|
|
225
|
+
.offset(x: 5, y: 0)
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
// Profile with dot indicator
|
|
229
|
+
HStack {
|
|
230
|
+
ZStack(alignment: .topTrailing) {
|
|
231
|
+
Circle()
|
|
232
|
+
.fill(Color(.systemGray5))
|
|
233
|
+
.frame(width: 50, height: 50)
|
|
234
|
+
|
|
235
|
+
BadgeDot(size: .small)
|
|
236
|
+
.offset(x: 2, y: 2)
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
VStack(alignment: .leading) {
|
|
240
|
+
Text("User Name")
|
|
241
|
+
.font(.headline)
|
|
242
|
+
Text("Online")
|
|
243
|
+
.font(.caption)
|
|
244
|
+
.foregroundColor(Colors.green03)
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
Spacer()
|
|
248
|
+
}
|
|
249
|
+
.padding()
|
|
250
|
+
.background(Color(.systemGray6))
|
|
251
|
+
.cornerRadius(12)
|
|
252
|
+
}
|
|
253
|
+
.padding(.horizontal, 16)
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
.padding(.vertical, 16)
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
// MARK: - Preview
|
|
262
|
+
|
|
263
|
+
#if DEBUG
|
|
264
|
+
struct BadgeDemo_Previews: PreviewProvider {
|
|
265
|
+
static var previews: some View {
|
|
266
|
+
BadgeDemo()
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
#endif
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
import MoMoUIKits
|
|
2
|
+
import SwiftUI
|
|
3
|
+
|
|
4
|
+
struct BaselineViewDemo: View {
|
|
5
|
+
@State private var enabled = true
|
|
6
|
+
|
|
7
|
+
var body: some View {
|
|
8
|
+
GeometryReader { geometry in
|
|
9
|
+
ZStack(alignment: .top) {
|
|
10
|
+
demoContent(
|
|
11
|
+
topInset: geometry.safeAreaInsets.top,
|
|
12
|
+
bottomInset: geometry.safeAreaInsets.bottom
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
MoMoUIKits.BaselineView(enabled: enabled)
|
|
16
|
+
}
|
|
17
|
+
.background(Colors.black02)
|
|
18
|
+
.ignoresSafeArea(.container, edges: [.top, .bottom])
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
private func demoContent(topInset: CGFloat, bottomInset: CGFloat) -> some View {
|
|
23
|
+
VStack(spacing: 0) {
|
|
24
|
+
header(topInset: topInset)
|
|
25
|
+
|
|
26
|
+
ScrollView {
|
|
27
|
+
VStack(alignment: .leading, spacing: 16) {
|
|
28
|
+
Toggle(isOn: $enabled) {
|
|
29
|
+
MomoText("Show baseline overlay", typography: .headerDefaultBold)
|
|
30
|
+
}
|
|
31
|
+
.padding(16)
|
|
32
|
+
.background(Colors.black01)
|
|
33
|
+
.cornerRadius(Radius.M)
|
|
34
|
+
|
|
35
|
+
MomoText(
|
|
36
|
+
"Use this screen to inspect the safe area, header, horizontal spacing, bottom tab, and button baseline guides.",
|
|
37
|
+
typography: .bodyDefaultRegular,
|
|
38
|
+
color: Colors.textSecondary
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
ForEach(1...8, id: \.self) { index in
|
|
42
|
+
sampleRow(index)
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
.padding(.horizontal, 16)
|
|
46
|
+
.padding(.top, 16)
|
|
47
|
+
.padding(.bottom, 88)
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
bottomAction(bottomInset: bottomInset)
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
private func header(topInset: CGFloat) -> some View {
|
|
55
|
+
VStack(spacing: 0) {
|
|
56
|
+
Color.clear
|
|
57
|
+
.frame(height: topInset)
|
|
58
|
+
|
|
59
|
+
HStack(spacing: 12) {
|
|
60
|
+
Image(systemName: "chevron.left")
|
|
61
|
+
.font(.system(size: 18, weight: .semibold))
|
|
62
|
+
.frame(width: 40, height: 52)
|
|
63
|
+
|
|
64
|
+
MomoText("Baseline View", typography: .headerDefaultBold)
|
|
65
|
+
|
|
66
|
+
Spacer(minLength: 0)
|
|
67
|
+
}
|
|
68
|
+
.frame(height: 52)
|
|
69
|
+
.padding(.horizontal, 12)
|
|
70
|
+
.background(Colors.black01)
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
private func sampleRow(_ index: Int) -> some View {
|
|
75
|
+
HStack(spacing: 12) {
|
|
76
|
+
Circle()
|
|
77
|
+
.fill(Colors.primaryLight)
|
|
78
|
+
.frame(width: 36, height: 36)
|
|
79
|
+
.overlay(
|
|
80
|
+
MomoText("\(index)", typography: .labelSMedium, color: Colors.primary)
|
|
81
|
+
)
|
|
82
|
+
|
|
83
|
+
VStack(alignment: .leading, spacing: 4) {
|
|
84
|
+
MomoText("Content row \(index)", typography: .headerSSemibold)
|
|
85
|
+
MomoText("Scrollable content under the debug overlay.", color: Colors.textSecondary)
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
Spacer(minLength: 0)
|
|
89
|
+
}
|
|
90
|
+
.padding(16)
|
|
91
|
+
.background(Colors.black01)
|
|
92
|
+
.cornerRadius(Radius.M)
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
private func bottomAction(bottomInset: CGFloat) -> some View {
|
|
96
|
+
VStack(spacing: 8) {
|
|
97
|
+
MoMoUIKits.Button(
|
|
98
|
+
title: "Primary action",
|
|
99
|
+
action: {},
|
|
100
|
+
type: .primary,
|
|
101
|
+
size: .large
|
|
102
|
+
)
|
|
103
|
+
}
|
|
104
|
+
.padding(.horizontal, 16)
|
|
105
|
+
.padding(.top, 8)
|
|
106
|
+
.padding(.bottom, bottomInset)
|
|
107
|
+
.background(Colors.black01)
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
#if DEBUG
|
|
112
|
+
struct BaselineViewDemo_Previews: PreviewProvider {
|
|
113
|
+
static var previews: some View {
|
|
114
|
+
BaselineViewDemo()
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
#endif
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
//
|
|
2
|
+
// BottomTabDemo.swift
|
|
3
|
+
// Example
|
|
4
|
+
//
|
|
5
|
+
// Usage demo for the bottom-tab navigation. Mirrors Compose's `BottomTabUsage`:
|
|
6
|
+
// four tabs (each with its own header title + badge) and a center floating
|
|
7
|
+
// button. Must be hosted inside a `NavigationContainer` (uses the Navigator).
|
|
8
|
+
//
|
|
9
|
+
|
|
10
|
+
import MoMoUIKits
|
|
11
|
+
import SwiftUI
|
|
12
|
+
|
|
13
|
+
@available(iOS 16.0, *)
|
|
14
|
+
struct BottomTabDemoContent: View {
|
|
15
|
+
@EnvironmentObject private var navigator: Navigator
|
|
16
|
+
|
|
17
|
+
var body: some View {
|
|
18
|
+
BottomTab(
|
|
19
|
+
items: [
|
|
20
|
+
BottomTabItem(
|
|
21
|
+
name: "Tab1",
|
|
22
|
+
label: "Option 1",
|
|
23
|
+
icon: "16_basic_home",
|
|
24
|
+
badgeLabel: "",
|
|
25
|
+
options: NavigationOptions(headerTitle: .default("Option 1"), hiddenBack: false),
|
|
26
|
+
screen: { tabBody("Option 1", Colors.blue09) }
|
|
27
|
+
),
|
|
28
|
+
BottomTabItem(
|
|
29
|
+
name: "Tab2",
|
|
30
|
+
label: "Option 2",
|
|
31
|
+
icon: "help_center",
|
|
32
|
+
badgeLabel: "0", // hidden (mirrors Compose's "0" → no badge)
|
|
33
|
+
options: NavigationOptions(headerTitle: .default("Option 2")),
|
|
34
|
+
screen: { tabBody("Option 2", Colors.pink09) }
|
|
35
|
+
),
|
|
36
|
+
BottomTabItem(
|
|
37
|
+
name: "Tab3",
|
|
38
|
+
label: "Option 3 with a very long label",
|
|
39
|
+
icon: "pin_star",
|
|
40
|
+
badgeLabel: "New",
|
|
41
|
+
options: NavigationOptions(headerTitle: .default("Option 3")),
|
|
42
|
+
screen: { tabBody("Option 3", Colors.yellow09) }
|
|
43
|
+
),
|
|
44
|
+
BottomTabItem(
|
|
45
|
+
name: "Tab4",
|
|
46
|
+
label: "Option 4 also quite long here",
|
|
47
|
+
icon: "navigation_more_icon",
|
|
48
|
+
badgeLabel: "9999",
|
|
49
|
+
options: NavigationOptions(headerTitle: .default("Option 4")),
|
|
50
|
+
screen: { tabBody("Option 4", Colors.blue10) }
|
|
51
|
+
)
|
|
52
|
+
],
|
|
53
|
+
floatingButton: BottomTabFloatingButton(
|
|
54
|
+
icon: "16_basic_home",
|
|
55
|
+
label: "Quét QR",
|
|
56
|
+
onPress: { navigator.push({ qrScreen }, options: NavigationOptions(title: "QR")) }
|
|
57
|
+
)
|
|
58
|
+
)
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
@ViewBuilder
|
|
62
|
+
private func tabBody(_ title: String, _ color: Color) -> some View {
|
|
63
|
+
VStack {
|
|
64
|
+
MomoText(title, typography: .headerDefaultBold)
|
|
65
|
+
.padding(.top, 24)
|
|
66
|
+
Spacer()
|
|
67
|
+
}
|
|
68
|
+
.frame(maxWidth: .infinity, maxHeight: .infinity)
|
|
69
|
+
.background(color)
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
private var qrScreen: some View {
|
|
73
|
+
VStack { MomoText("QR scanner placeholder") }
|
|
74
|
+
.frame(maxWidth: .infinity)
|
|
75
|
+
.padding(24)
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
// MARK: - Standalone wrapper (so it can be opened directly from Home too)
|
|
80
|
+
|
|
81
|
+
struct BottomTabDemo: View {
|
|
82
|
+
var body: some View {
|
|
83
|
+
if #available(iOS 16.0, *) {
|
|
84
|
+
BottomTabDemoContent()
|
|
85
|
+
} else {
|
|
86
|
+
Text("Bottom tab demo requires iOS 16+").padding()
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Foundation.swift
|
|
3
|
+
// Example
|
|
4
|
+
//
|
|
5
|
+
// Created by Wem on 13/12/2022.
|
|
6
|
+
//
|
|
7
|
+
|
|
8
|
+
import Foundation
|
|
9
|
+
import Lottie
|
|
10
|
+
import MoMoUIKits
|
|
11
|
+
import SwiftUI
|
|
12
|
+
|
|
13
|
+
// MARK: - ButtonDemo
|
|
14
|
+
|
|
15
|
+
struct ButtonDemo: View {
|
|
16
|
+
// MARK: Internal
|
|
17
|
+
|
|
18
|
+
var body: some View {
|
|
19
|
+
ScrollView {
|
|
20
|
+
VStack {
|
|
21
|
+
Toggle("Disabled", isOn: $disabled)
|
|
22
|
+
|
|
23
|
+
Group {
|
|
24
|
+
Button(title: "Button", action: onPress, type: disabled ? .disabled : .primary, size: .large,
|
|
25
|
+
iconRight: AnyView(Image(systemName: "checkmark.circle")))
|
|
26
|
+
Button(title: "Button", action: onPress, size: .small)
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
Group {
|
|
30
|
+
Button(title: "Button", action: onPress, type: .danger,
|
|
31
|
+
iconLeft: AnyView(Image(systemName: "checkmark.circle")))
|
|
32
|
+
Button(title: "Button", action: onPress, type: .danger, size: .medium)
|
|
33
|
+
Button(title: "Button", action: onPress, type: .danger, size: .small)
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
Group {
|
|
37
|
+
Button(title: "Button", action: onPress, type: .danger, iconLeft: AnyView(Image(systemName: "checkmark.circle")), isFull: false)
|
|
38
|
+
Button(title: "Button", action: onPress, type: .danger, size: .medium, isFull: false)
|
|
39
|
+
Button(title: "Button", action: onPress, type: .danger, size: .small, isFull: false)
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
Group {
|
|
44
|
+
Button(title: "Button", action: onPress, type: .tonal, size: .large)
|
|
45
|
+
Button(title: "Button", action: onPress, type: .tonal, size: .medium)
|
|
46
|
+
Button(title: "Button", action: onPress, type: .tonal, size: .small)
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
Group {
|
|
50
|
+
Button(title: "Tinted icon", action: onPress, type: .primary,
|
|
51
|
+
iconLeft: AnyView(Image(systemName: "checkmark.circle")), useTintColor: true)
|
|
52
|
+
Button(title: "Original icon", action: onPress, type: .primary,
|
|
53
|
+
iconLeft: AnyView(Image(systemName: "checkmark.circle")), useTintColor: false)
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
Group {
|
|
57
|
+
Button(title: "Button", action: onPress, type: .secondary, size: .large)
|
|
58
|
+
Button(title: "Button", action: onPress, type: .secondary, size: .medium)
|
|
59
|
+
Button(title: "Button", action: onPress, type: .secondary, size: .small)
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
Group {
|
|
63
|
+
Button(title: "Button", action: onPress, type: .text, size: .large)
|
|
64
|
+
Button(title: "Button", action: onPress, type: .text, size: .medium)
|
|
65
|
+
Button(title: "Button", action: onPress, type: .text, size: .small)
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
Group {
|
|
69
|
+
Button(title: "Button", action: onPress, type: .outline, size: .large)
|
|
70
|
+
Button(title: "Button", action: onPress, type: .outline, size: .medium)
|
|
71
|
+
Button(title: "Button", action: onPress, type: .outline, size: .small)
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
Group {
|
|
75
|
+
Button(title: "Button", action: onPress, type: .disabled, size: .large)
|
|
76
|
+
Button(title: "Button", action: onPress, type: .disabled, size: .medium)
|
|
77
|
+
Button(title: "Button", action: onPress, type: .disabled, size: .small)
|
|
78
|
+
}
|
|
79
|
+
Group {
|
|
80
|
+
Button(title: "Button", action: onPress, type: .primary, size: .medium, loading: true)
|
|
81
|
+
Button(title: "Button", action: onPress, type: .danger, size: .medium, iconLeft: AnyView(Image(systemName: "checkmark.circle")), loading: true)
|
|
82
|
+
Button(title: "Button", action: onPress, type: .disabled, size: .medium, iconRight: AnyView(Image(systemName: "checkmark.circle")), loading: true)
|
|
83
|
+
Button(title: "Button", action: onPress, type: .outline, size: .medium, iconLeft: AnyView(Image(systemName: "checkmark.circle")), iconRight: AnyView(Image(systemName: "checkmark.circle")), loading: true)
|
|
84
|
+
Button(title: "Button", action: onPress, type: .secondary, size: .medium, loading: true)
|
|
85
|
+
Button(title: "Button", action: onPress, type: .text, size: .medium, loading: true)
|
|
86
|
+
Button(title: "Button", action: onPress, type: .tonal, size: .medium, loading: true)
|
|
87
|
+
}
|
|
88
|
+
}.padding(16)
|
|
89
|
+
}.padding(.top)
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
func onPress() {
|
|
93
|
+
print("Button")
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
// MARK: Private
|
|
97
|
+
|
|
98
|
+
@State private var value: String = ""
|
|
99
|
+
@State private var disabled: Bool = false
|
|
100
|
+
}
|