├── .github ├── ISSUE_TEMPLATE │ └── 이슈-생성-템플릿.md └── workflows │ └── pull-request.yml ├── .gitignore ├── .mise.toml ├── Makefile ├── Plugins ├── ConfigurationPlugin │ ├── Plugin.swift │ └── ProjectDescriptionHelpers │ │ ├── Configuration+Extensions.swift │ │ └── ProjectDeployTarget.swift └── DependencyPlugin │ ├── Plugin.swift │ └── ProjectDescriptionHelpers │ ├── Modules.swift │ ├── Path+Modules.swift │ ├── Project+Environment.swift │ ├── TargetDependency+Modules.swift │ └── TargetDependency+SPM.swift ├── Projects ├── App │ ├── Bottle.entitlements │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-1024.png │ │ │ │ ├── Icon-120 1.png │ │ │ │ ├── Icon-120.png │ │ │ │ ├── Icon-152.png │ │ │ │ ├── Icon-167.png │ │ │ │ ├── Icon-180.png │ │ │ │ ├── Icon-20.png │ │ │ │ ├── Icon-29.png │ │ │ │ ├── Icon-40 1.png │ │ │ │ ├── Icon-40 2.png │ │ │ │ ├── Icon-40.png │ │ │ │ ├── Icon-58 1.png │ │ │ │ ├── Icon-58.png │ │ │ │ ├── Icon-60.png │ │ │ │ ├── Icon-76.png │ │ │ │ ├── Icon-80 1.png │ │ │ │ ├── Icon-80.png │ │ │ │ └── Icon-87.png │ │ │ ├── Contents.json │ │ │ ├── splashColor.colorset │ │ │ │ └── Contents.json │ │ │ └── splashImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_splash.svg │ │ └── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── Sources │ │ ├── AppDelegate.swift │ │ └── AppRoot.swift │ └── Tests │ │ └── BottlesIOSTests.swift ├── Core │ ├── KeyChainStore │ │ ├── Interface │ │ │ └── Sources │ │ │ │ ├── KeyChainStorable.swift │ │ │ │ └── TokenStoreProperties.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ └── KeyChainTokenStore.swift │ │ ├── Testing │ │ │ └── Sources │ │ │ │ └── KeyChainStoreTesting.swift │ │ └── Tests │ │ │ └── Sources │ │ │ └── KeyChainStoreTest.swift │ ├── Logger │ │ ├── Interface │ │ │ └── Sources │ │ │ │ ├── Log.swift │ │ │ │ └── OSLog+Extensions.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ └── Source.swift │ │ ├── Testing │ │ │ └── Sources │ │ │ │ └── LoggerTesting.swift │ │ └── Tests │ │ │ └── Sources │ │ │ └── LoggerTest.swift │ ├── Network │ │ ├── Interface │ │ │ └── Sources │ │ │ │ ├── API │ │ │ │ ├── AnyAPIType.swift │ │ │ │ └── BaseTargetType.swift │ │ │ │ ├── NetworkManager │ │ │ │ └── NetworkManagable.swift │ │ │ │ └── Provider │ │ │ │ └── Providable.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── Interceptor │ │ │ │ ├── Refresh │ │ │ │ │ ├── RefreshAPI.swift │ │ │ │ │ └── RefreshResponseDTO.swift │ │ │ │ └── TokenInterceptor.swift │ │ │ ├── MoyaPulgins │ │ │ │ └── MoyaLoggerPlugin.swift │ │ │ ├── NetworkManager │ │ │ │ └── NetworkManager.swift │ │ │ └── Provider │ │ │ │ └── Provider.swift │ │ ├── Testing │ │ │ └── Sources │ │ │ │ └── NetworkTesting.swift │ │ └── Tests │ │ │ └── Sources │ │ │ └── NetworkTest.swift │ ├── Project.swift │ ├── Toast │ │ ├── Interface │ │ │ └── Sources │ │ │ │ └── ToastClient.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ └── Source.swift │ │ ├── Testing │ │ │ └── Sources │ │ │ │ └── ToastTesting.swift │ │ └── Tests │ │ │ └── Sources │ │ │ └── ToastTest.swift │ ├── URLHandler │ │ ├── Interface │ │ │ └── Sources │ │ │ │ ├── BottleURLType.swift │ │ │ │ └── URLHandler.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ └── Source.swift │ │ ├── Testing │ │ │ └── Sources │ │ │ │ └── URLHandlerTesting.swift │ │ └── Tests │ │ │ └── Sources │ │ │ └── URLHandlerTest.swift │ ├── Util │ │ ├── Interface │ │ │ └── Sources │ │ │ │ └── Source.swift │ │ ├── Project.swift │ │ └── Sources │ │ │ └── Source.swift │ └── WebView │ │ ├── Interface │ │ └── Sources │ │ │ ├── BottleWebViewAction.swift │ │ │ └── WebViewMessageHandler.swift │ │ ├── Project.swift │ │ ├── Sources │ │ └── Source.swift │ │ ├── Testing │ │ └── Sources │ │ │ └── WebViewTesting.swift │ │ └── Tests │ │ └── Sources │ │ └── WebViewTest.swift ├── Domain │ ├── Application │ │ ├── Interface │ │ │ └── Sources │ │ │ │ └── ApplicationClient.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ └── ApplicationClient.swift │ │ ├── Testing │ │ │ └── Sources │ │ │ │ └── ApplicationTesting.swift │ │ └── Tests │ │ │ └── Sources │ │ │ └── ApplicationTest.swift │ ├── Auth │ │ ├── Interface │ │ │ └── Sources │ │ │ │ ├── API │ │ │ │ ├── AppleAuthAPI.swift │ │ │ │ └── AuthAPI.swift │ │ │ │ ├── AuthClient.swift │ │ │ │ ├── AuthInterface.swift │ │ │ │ ├── DTO │ │ │ │ ├── Request │ │ │ │ │ ├── LogOutRequestDTO.swift │ │ │ │ │ ├── ProfileRequestDTO.swift │ │ │ │ │ └── SignInRequestDTO.swift │ │ │ │ └── Response │ │ │ │ │ ├── AppleTokenResponseDTO.swift │ │ │ │ │ ├── ClientSecretResponseDTO.swift │ │ │ │ │ ├── SignInResponseDTO.swift │ │ │ │ │ └── UpdateVersionResponseDTO.swift │ │ │ │ ├── DataSource │ │ │ │ └── LocalAuthDataSource.swift │ │ │ │ ├── Entity │ │ │ │ ├── SignInResult.swift │ │ │ │ └── Token.swift │ │ │ │ └── LoginManager │ │ │ │ └── LoginManager.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── AuthClient.swift │ │ │ ├── DataSource │ │ │ │ └── LocalAuthDataSourceImpl.swift │ │ │ └── LoginManager │ │ │ │ ├── AppleLoginManager.swift │ │ │ │ └── LoginManager.swift │ │ ├── Testing │ │ │ └── Sources │ │ │ │ └── AuthTesting.swift │ │ └── Tests │ │ │ └── Sources │ │ │ └── AuthTest.swift │ ├── Bottle │ │ ├── Interface │ │ │ └── Sources │ │ │ │ ├── API │ │ │ │ └── BottleAPI.swift │ │ │ │ ├── BottleClient.swift │ │ │ │ ├── DTO │ │ │ │ ├── Request │ │ │ │ │ ├── BottleImageShareRequestDTO.swift │ │ │ │ │ ├── FinalSelectRequestDTO.swift │ │ │ │ │ └── RegisterLetterAnswerRequestDTO.swift │ │ │ │ └── Response │ │ │ │ │ ├── BottleListResponseDTO.swift │ │ │ │ │ ├── BottlePingPongResponseDTO.swift │ │ │ │ │ └── BottleStorageListResponseDTO.swift │ │ │ │ └── Entity │ │ │ │ ├── BottlePingPong.swift │ │ │ │ ├── BottleStorageList.swift │ │ │ │ └── UserBottleInfo.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ └── BottleClient.swift │ │ ├── Testing │ │ │ └── Sources │ │ │ │ └── BottleTesting.swift │ │ └── Tests │ │ │ └── Sources │ │ │ └── BottleTest.swift │ ├── Error │ │ ├── Interface │ │ │ └── Sources │ │ │ │ └── DomainError.swift │ │ ├── Project.swift │ │ └── Sources │ │ │ └── Source.swift │ ├── Profile │ │ ├── Interface │ │ │ └── Sources │ │ │ │ ├── API │ │ │ │ └── ProfileAPI.swift │ │ │ │ ├── DTO │ │ │ │ ├── Request │ │ │ │ │ ├── MatchingActivateRequestDTO.swift │ │ │ │ │ └── RegisterIntroductionRequestDTO.swift │ │ │ │ └── Response │ │ │ │ │ ├── IntroductionExistResponseDTO.swift │ │ │ │ │ ├── ProfileResponseDTO.swift │ │ │ │ │ └── ProfileStatusResponseDTO.swift │ │ │ │ ├── Entity │ │ │ │ ├── UserInterest.swift │ │ │ │ ├── UserProfile.swift │ │ │ │ ├── UserProfileStatus.swift │ │ │ │ └── UserRegion.swift │ │ │ │ └── ProfileClient.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ └── ProfileClient.swift │ │ ├── Testing │ │ │ └── Sources │ │ │ │ └── ProfileTesting.swift │ │ └── Tests │ │ │ └── Sources │ │ │ └── ProfileTest.swift │ ├── Project.swift │ ├── Report │ │ ├── Interface │ │ │ └── Sources │ │ │ │ ├── API │ │ │ │ └── ReportAPI.swift │ │ │ │ ├── DTO │ │ │ │ └── Request │ │ │ │ │ └── ReportUserRequestDTO.swift │ │ │ │ ├── Entity │ │ │ │ └── UserReportInfo.swift │ │ │ │ └── ReportClient.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── ReportClient.swift │ │ │ └── Source.swift │ │ ├── Testing │ │ │ └── Sources │ │ │ │ └── ReportTesting.swift │ │ └── Tests │ │ │ └── Sources │ │ │ └── ReportTest.swift │ ├── User │ │ ├── Interface │ │ │ └── Sources │ │ │ │ ├── API │ │ │ │ └── UserAPI.swift │ │ │ │ ├── DTO │ │ │ │ ├── Request │ │ │ │ │ ├── AlertStateRequestDTO.swift │ │ │ │ │ ├── BlockContactRequestDTO.swift │ │ │ │ │ └── UpdatePushNotificationAllowStatusRequestDTO.swift │ │ │ │ └── Response │ │ │ │ │ └── AlertStateReponseDTO.swift │ │ │ │ ├── Entity │ │ │ │ ├── AlertState.swift │ │ │ │ └── AlertType.swift │ │ │ │ ├── NeedUpdatePushNotificationAllowStatusRemotelyType.swift │ │ │ │ ├── UserClient.swift │ │ │ │ └── UserError.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ └── UserClient.swift │ │ ├── Testing │ │ │ └── Sources │ │ │ │ └── UserTesting.swift │ │ └── Tests │ │ │ └── Sources │ │ │ └── UserTest.swift │ └── WebView │ │ ├── Interface │ │ └── Sources │ │ │ └── WebViewHandleClientInterface.swift │ │ ├── Project.swift │ │ ├── Sources │ │ └── WebViewClient.swift │ │ ├── Testing │ │ └── Sources │ │ │ └── WebViewTesting.swift │ │ └── Tests │ │ └── Sources │ │ └── WebViewTest.swift ├── Feature │ ├── BaseWebView │ │ ├── Example │ │ │ └── Sources │ │ │ │ └── AppView.swift │ │ ├── Interface │ │ │ └── Sources │ │ │ │ ├── BaseWebView.swift │ │ │ │ └── BaseWebViewType.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ └── Source.swift │ │ ├── Testing │ │ │ └── Sources │ │ │ │ └── BottleWebViewTesting.swift │ │ └── Tests │ │ │ └── Sources │ │ │ └── BottleWebViewTest.swift │ ├── BottleArrival │ │ ├── Example │ │ │ └── Sources │ │ │ │ └── AppView.swift │ │ ├── Interface │ │ │ └── Sources │ │ │ │ ├── BottleArrival │ │ │ │ ├── BottleArrivalFeature.swift │ │ │ │ ├── BottleArrivalFeatureInterface.swift │ │ │ │ └── BottleArrivalView.swift │ │ │ │ └── BottleArrivalDetail │ │ │ │ ├── BottleArrivalDetailFeature.swift │ │ │ │ ├── BottleArrivalDetailFeatureInterface.swift │ │ │ │ └── BottleArrivalDetailView.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ └── Source.swift │ │ ├── Testing │ │ │ └── Sources │ │ │ │ └── BottleArrivalTesting.swift │ │ └── Tests │ │ │ └── Sources │ │ │ └── BottleArrivalTest.swift │ ├── BottleStorage │ │ ├── Example │ │ │ └── Sources │ │ │ │ └── AppView.swift │ │ ├── Interface │ │ │ └── Sources │ │ │ │ ├── BottleStorage │ │ │ │ ├── BottleStorageFeature.swift │ │ │ │ ├── BottleStorageFeatureInterface.swift │ │ │ │ └── BottleStorageView.swift │ │ │ │ └── PingPongDetail │ │ │ │ └── View │ │ │ │ ├── FinalSelectPingPongView.swift │ │ │ │ ├── PhotoSharePingPongView.swift │ │ │ │ ├── PingPongDetail │ │ │ │ ├── PingPongDetailFeature.swift │ │ │ │ ├── PingPongDetailFeatureInterface.swift │ │ │ │ └── PingPongDetailView.swift │ │ │ │ ├── QuestionPingPongView.swift │ │ │ │ └── SubViews │ │ │ │ ├── Introduction │ │ │ │ ├── IntroductionFeature.swift │ │ │ │ ├── IntroductionFeatureInterface.swift │ │ │ │ └── IntroductionView.swift │ │ │ │ ├── Matching │ │ │ │ ├── MatchingFeature.swift │ │ │ │ ├── MatchingFeatureInterface.swift │ │ │ │ └── MatchingView.swift │ │ │ │ └── QuestionAndAnswer │ │ │ │ ├── QuestionAndAnswerFeature.swift │ │ │ │ ├── QuestionAndAnswerFeatureInterface.swift │ │ │ │ └── QuestionAndAnswerView.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ └── Source.swift │ │ ├── Testing │ │ │ └── Sources │ │ │ │ └── BottleStorageTesting.swift │ │ └── Tests │ │ │ └── Sources │ │ │ └── BottleStorageTest.swift │ ├── GeneralSignUp │ │ ├── Example │ │ │ └── Sources │ │ │ │ └── AppView.swift │ │ ├── Interface │ │ │ └── Sources │ │ │ │ ├── GeneralSignUpFeature.swift │ │ │ │ ├── GeneralSignUpFeatureInterface.swift │ │ │ │ ├── GeneralSignUpView.swift │ │ │ │ └── TermsWebView.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ └── Source.swift │ │ ├── Testing │ │ │ └── Sources │ │ │ │ └── GeneralSignUpTesting.swift │ │ └── Tests │ │ │ └── Sources │ │ │ └── GeneralSignUpTest.swift │ ├── GoodFeeling │ │ ├── Example │ │ │ └── Sources │ │ │ │ └── AppView.swift │ │ ├── Interface │ │ │ └── Sources │ │ │ │ ├── GoodFeeling │ │ │ │ ├── GoodFeelingFeature.swift │ │ │ │ ├── GoodFeelingFeatureInterface.swift │ │ │ │ └── GoodFeelingView.swift │ │ │ │ ├── Root │ │ │ │ ├── FeatureGoodFeelingRootView.swift │ │ │ │ ├── GoodFeelingRootFeature.swift │ │ │ │ └── GoodFeelingRootFeatureInterface.swift │ │ │ │ └── SentBottleDetail │ │ │ │ ├── SentBottleDetailFeature.swift │ │ │ │ ├── SentBottleDetailFeatureInterface.swift │ │ │ │ └── SentBottleDetailView.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ └── Source.swift │ │ ├── Testing │ │ │ └── Sources │ │ │ │ └── GoodFeelingTesting.swift │ │ └── Tests │ │ │ └── Sources │ │ │ └── GoodFeelingTest.swift │ ├── Guide │ │ ├── Example │ │ │ └── Sources │ │ │ │ └── AppView.swift │ │ ├── Interface │ │ │ └── Sources │ │ │ │ ├── MainGuide │ │ │ │ ├── MainGuideFeature.swift │ │ │ │ └── MainGuideView.swift │ │ │ │ ├── PhotoShareGuide │ │ │ │ ├── PhotoShareGuideFeature.swift │ │ │ │ └── PhotoShareGuideView.swift │ │ │ │ ├── PingPongGuide │ │ │ │ ├── PingPongGuideFeature.swift │ │ │ │ └── PingPongGuideView.swift │ │ │ │ └── StartGuide │ │ │ │ ├── StartGuideFeature.swift │ │ │ │ └── StartGuideView.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ └── Sources.swift │ │ ├── Testing │ │ │ └── Sources │ │ │ │ └── GuideTesting.swift │ │ └── Tests │ │ │ └── Sources │ │ │ └── GuideTest.swift │ ├── Login │ │ ├── Example │ │ │ └── Sources │ │ │ │ └── AppView.swift │ │ ├── Interface │ │ │ ├── LoginView.swift │ │ │ └── Sources │ │ │ │ ├── GeneralLogIn │ │ │ │ ├── GeneralLogInFeatureInterface.swift │ │ │ │ ├── GeneralLogInView.swift │ │ │ │ └── GeneralLoginFeature.swift │ │ │ │ └── Login │ │ │ │ ├── AppleLoginFeature.swift │ │ │ │ ├── AppleLoginFeatureInterface.swift │ │ │ │ ├── AppleLoginView.swift │ │ │ │ ├── LoginFeature.swift │ │ │ │ ├── LoginFeatureInterface.swift │ │ │ │ └── LoginView.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ └── Source.swift │ │ ├── Testing │ │ │ └── Sources │ │ │ │ └── LoginTesting.swift │ │ └── Tests │ │ │ └── Sources │ │ │ └── LoginTest.swift │ ├── MyPage │ │ ├── Example │ │ │ └── Sources │ │ │ │ └── AppView.swift │ │ ├── Interface │ │ │ └── Sources │ │ │ │ ├── AccountSetting │ │ │ │ ├── AccountSettingFeature.swift │ │ │ │ ├── AccountSettingFeatureInterface.swift │ │ │ │ └── AccountSettingView.swift │ │ │ │ ├── AlertSetting │ │ │ │ ├── AlertSettingFeature.swift │ │ │ │ ├── AlertSettingFeatureInterface.swift │ │ │ │ └── AlertSettingView.swift │ │ │ │ ├── EditProfile │ │ │ │ ├── EditProfileFeature.swift │ │ │ │ ├── EditProfileFeatureInterface.swift │ │ │ │ └── ProfileEditView.swift │ │ │ │ ├── MyPage │ │ │ │ ├── MyPageFeature.swift │ │ │ │ ├── MyPageFeatureInterface.swift │ │ │ │ └── MyPageView.swift │ │ │ │ ├── MyPageRootFeature.swift │ │ │ │ ├── MyPageRootFeatureInterface.swift │ │ │ │ └── MyPageRootView.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ └── Source.swift │ │ ├── Testing │ │ │ └── Sources │ │ │ │ └── MyPageTesting.swift │ │ └── Tests │ │ │ └── Sources │ │ │ └── MyPageTest.swift │ ├── Onboarding │ │ ├── Example │ │ │ └── Sources │ │ │ │ └── AppView.swift │ │ ├── Interface │ │ │ └── Sources │ │ │ │ └── Onboarding │ │ │ │ ├── OnboardingFeature.swift │ │ │ │ ├── OnboardingFeatureInterface.swift │ │ │ │ └── OnboardingView.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ └── Source.swift │ │ ├── Testing │ │ │ └── Sources │ │ │ │ └── OnboardingTesting.swift │ │ └── Tests │ │ │ └── Sources │ │ │ └── OnboardingTest.swift │ ├── ProfileSetup │ │ ├── Example │ │ │ └── Sources │ │ │ │ └── AppView.swift │ │ ├── Interface │ │ │ └── Sources │ │ │ │ ├── IntroductionSetup │ │ │ │ ├── IntroductionSetupFeature.swift │ │ │ │ └── IntroductionSetupView.swift │ │ │ │ └── ProfileImageUpload │ │ │ │ ├── ProfileImageUploadFeature.swift │ │ │ │ └── ProfileImageUploadView.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ └── Sources.swift │ │ ├── Testing │ │ │ └── Sources │ │ │ │ └── ProfileSetupTesting.swift │ │ └── Tests │ │ │ └── Sources │ │ │ └── ProfileSetupTest.swift │ ├── Project.swift │ ├── Report │ │ ├── Example │ │ │ └── Sources │ │ │ │ └── AppView.swift │ │ ├── Interface │ │ │ └── Sources │ │ │ │ ├── ReportUserFeature.swift │ │ │ │ ├── ReportUserFeatureInterface.swift │ │ │ │ ├── ReportUserView.swift │ │ │ │ └── UserReportProfile.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ └── Source.swift │ │ ├── Testing │ │ │ └── Sources │ │ │ │ └── ReportTesting.swift │ │ └── Tests │ │ │ └── Sources │ │ │ └── ReportTest.swift │ ├── SandBeach │ │ ├── Example │ │ │ └── Sources │ │ │ │ └── AppView.swift │ │ ├── Interface │ │ │ └── Sources │ │ │ │ ├── Root │ │ │ │ ├── SandBeachRootFeature.swift │ │ │ │ └── SandBeachRootView.swift │ │ │ │ ├── SandBeach │ │ │ │ ├── SandBeachFeatureInterface.swift │ │ │ │ ├── SandBeachView.swift │ │ │ │ └── UserStateType.swift │ │ │ │ └── SandBeachCoachMark │ │ │ │ ├── SandBeachCoachMarkFeature.swift │ │ │ │ ├── SandBeachCoachMarkFeatureInterface.swift │ │ │ │ └── SandBeachCoachMarkView.swift │ │ ├── Project.swift │ │ ├── Sources │ │ │ └── SandBeach │ │ │ │ └── SandBeachFeature.swift │ │ ├── Testing │ │ │ └── Sources │ │ │ │ └── SandBeachTesting.swift │ │ └── Tests │ │ │ └── Sources │ │ │ └── SandBeachTest.swift │ ├── Sources │ │ ├── App │ │ │ ├── AppDelegateFeature.swift │ │ │ ├── AppFeature.swift │ │ │ └── AppView.swift │ │ ├── SplashView │ │ │ ├── SplashFeature.swift │ │ │ └── SplashView.swift │ │ └── TabView │ │ │ ├── MainTabView.swift │ │ │ └── MainTabViewFeature.swift │ └── TabBar │ │ ├── Example │ │ └── Sources │ │ │ └── AppView.swift │ │ ├── Interface │ │ └── Sources │ │ │ ├── TabBarModifier.swift │ │ │ └── TabType.swift │ │ ├── Project.swift │ │ ├── Sources │ │ └── Source.swift │ │ ├── Testing │ │ └── Sources │ │ │ └── TabBarTesting.swift │ │ └── Tests │ │ └── Sources │ │ └── TabBarTest.swift └── Shared │ ├── DesignSystem │ ├── Example │ │ └── Sources │ │ │ ├── AppView.swift │ │ │ ├── DesignSystemExampleView │ │ │ └── DesignSystemExampleView.swift │ │ │ └── SubViews │ │ │ ├── BottleStorageList.swift │ │ │ ├── ClipListTest │ │ │ ├── ClipListContainerViewTest.swift │ │ │ └── ClipListViewTest.swift │ │ │ ├── ETCTest │ │ │ └── PageIndicatorTestView.swift │ │ │ ├── LaundaryGothicsStyleTextTestView.swift │ │ │ ├── LetterCardTest │ │ │ └── LetterCardTestView.swift │ │ │ ├── LinesTextFieldTest │ │ │ ├── IntroductionTextFieldTestView.swift │ │ │ └── LetterTextFieldTestView.swift │ │ │ ├── ListTest │ │ │ └── ListTestView.swift │ │ │ ├── OutlinedStyleButtonTest │ │ │ ├── OutlinedStyleButtonTestItem.swift │ │ │ ├── OutlinedStyleButtonTestView.swift │ │ │ └── OutlinedStyleToggleButtonTestView.swift │ │ │ ├── RobotoStyleTextTestView.swift │ │ │ ├── SolidButtonTest │ │ │ └── SolidButtonTestView.swift │ │ │ ├── StopCardTest │ │ │ └── StopCardTestView.swift │ │ │ ├── ToastTestView.swift │ │ │ ├── UserProfileTest │ │ │ └── UserProfileTestView.swift │ │ │ └── WantedSansStyleTextTestView.swift │ ├── Project.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Colors.xcassets │ │ │ ├── Contents.json │ │ │ └── SementicColor │ │ │ │ ├── Black │ │ │ │ ├── Black100.colorset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── ETC │ │ │ │ ├── Contents.json │ │ │ │ └── Kakao.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Gradient │ │ │ │ ├── Contents.json │ │ │ │ └── Gradient.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Neutral │ │ │ │ ├── Contents.json │ │ │ │ ├── Neutral100.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Neutral200.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Neutral300.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Neutral400.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Neutral500.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Neutral600.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Neutral700.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Neutral800.colorset │ │ │ │ │ └── Contents.json │ │ │ │ └── Neutral900.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── PrimaryPurple │ │ │ │ ├── Contents.json │ │ │ │ ├── PrimaryPurple100.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── PrimaryPurple200.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── PrimaryPurple300.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── PrimaryPurple400.colorset │ │ │ │ │ └── Contents.json │ │ │ │ └── PrimaryPurple500.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Red │ │ │ │ ├── Contents.json │ │ │ │ └── Red.colorset │ │ │ │ │ └── Contents.json │ │ │ │ └── White │ │ │ │ ├── Contents.json │ │ │ │ └── White100.colorset │ │ │ │ └── Contents.json │ │ ├── Font │ │ │ ├── LaundryGothic │ │ │ │ ├── LaundryGothicOTF-Bold.otf │ │ │ │ └── LaundryGothicOTF-Regular.otf │ │ │ ├── Roboto │ │ │ │ └── Roboto-Medium.otf │ │ │ └── WantedSans │ │ │ │ ├── WantedSans-Black.otf │ │ │ │ ├── WantedSans-Bold.otf │ │ │ │ ├── WantedSans-ExtraBlack.otf │ │ │ │ ├── WantedSans-ExtraBold.otf │ │ │ │ ├── WantedSans-Medium.otf │ │ │ │ ├── WantedSans-Regular.otf │ │ │ │ └── WantedSans-SemiBold.otf │ │ ├── Images.xcassets │ │ │ ├── Contents.json │ │ │ ├── icon │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_appleLogo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_appleLogo.svg │ │ │ │ ├── icon_arrow_left.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_arrow_left.svg │ │ │ │ ├── icon_bottleStorage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_bottleStorage.svg │ │ │ │ ├── icon_clearDelete.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_clearDelete.svg │ │ │ │ ├── icon_delete.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_delete.svg │ │ │ │ ├── icon_down.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_down.svg │ │ │ │ ├── icon_heart.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_heart.svg │ │ │ │ ├── icon_kakaoLogo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_kakaoLogo.svg │ │ │ │ ├── icon_myPage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_myPage.svg │ │ │ │ ├── icon_plus.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_plus.svg │ │ │ │ ├── icon_right.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_right.svg │ │ │ │ ├── icon_sandBeach.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_sandBeach.svg │ │ │ │ ├── icon_share.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_share.svg │ │ │ │ ├── icon_siren.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_siren.svg │ │ │ │ ├── icon_talk.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_talk.svg │ │ │ │ ├── icon_up.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_up.svg │ │ │ │ ├── icon_verticalLine.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_verticalLine.svg │ │ │ │ └── icon_warning.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_warning.svg │ │ │ ├── illustration │ │ │ │ ├── Contents.json │ │ │ │ ├── illustraition_basket.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── illustraition_basket.svg │ │ │ │ ├── illustraition_bottle1.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── illustraition_bottle1.svg │ │ │ │ ├── illustraition_bottle2.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── illustraition_bottle2.svg │ │ │ │ ├── illustraition_bottleArrivalPhone.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── illustraition_bottleArrivalPhone.svg │ │ │ │ ├── illustraition_boy.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── illustraition_boy.svg │ │ │ │ ├── illustraition_firstPingPong.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── illustraition_firstPingPong.svg │ │ │ │ ├── illustraition_girl.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── illustraition_girl.svg │ │ │ │ ├── illustraition_islandEmptyBottle.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── illustraition_islandEmptyBottle.svg │ │ │ │ ├── illustraition_islandHasBottle.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── illustraition_islandHasBottle.svg │ │ │ │ ├── illustraition_loginBackground.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── illustraition_loginBackground.svg │ │ │ │ ├── illustraition_logo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── illustraition_logo.svg │ │ │ │ ├── illustraition_loudspeaker.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── illustraition_loudspeaker.svg │ │ │ │ ├── illustraition_no.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── illustraition_no.svg │ │ │ │ ├── illustraition_phone.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── illustraition_phone.svg │ │ │ │ ├── illustraition_photoShare.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── illustraition_photoShare.svg │ │ │ │ ├── illustraition_secondPingPong.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── illustraition_secondPingPong.svg │ │ │ │ ├── illustraition_telescope.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── illustraition_telescope.svg │ │ │ │ ├── illustraition_whiteLogo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── illustraition_whiteLogo.svg │ │ │ │ ├── illustraition_yes.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── illustraition_yes.svg │ │ │ │ └── illustration_sandBeachBackground.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── illustration_sandBeachBackground.svg │ │ │ └── image │ │ │ │ ├── Contents.json │ │ │ │ └── image_splash.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_splash.svg │ │ └── Lotties.xcassets │ │ │ ├── Bottle_loading_ellipse.dataset │ │ │ ├── Bottle_loading_ellipse.json │ │ │ └── Contents.json │ │ │ └── Contents.json │ └── Sources │ │ ├── Color │ │ ├── BottleColorSystem+Neutral.swift │ │ ├── BottleColorSystem+Primary.swift │ │ ├── BottleColorSystem+Sub.swift │ │ ├── Color+Extensions.swift │ │ └── Colorable.swift │ │ ├── Components │ │ ├── Alert │ │ │ ├── BottleAlert.swift │ │ │ └── BottleAlertView.swift │ │ ├── Button │ │ │ ├── ButtonStateType.swift │ │ │ ├── ButtonType.swift │ │ │ ├── OutlinedButton │ │ │ │ ├── OutlinedButtonStyle.swift │ │ │ │ └── OutlinedStyleButton.swift │ │ │ ├── SegmentControlButton │ │ │ │ ├── SegmentControlButton.swift │ │ │ │ └── SegmentControlButtonStyle.swift │ │ │ └── SolidButton │ │ │ │ ├── SolidButton.swift │ │ │ │ └── SolidButtonStyle.swift │ │ ├── Card │ │ │ ├── ClipList │ │ │ │ ├── ChipListLayout.swift │ │ │ │ ├── ClipItem.swift │ │ │ │ ├── ClipListContainerView.swift │ │ │ │ └── ClipListView.swift │ │ │ ├── Letter │ │ │ │ └── LettetCardView.swift │ │ │ ├── PingPong │ │ │ │ ├── PingPongBubble.swift │ │ │ │ ├── PingPongContainerView.swift │ │ │ │ ├── PingPongUserView.swift │ │ │ │ └── QuestionStateType.swift │ │ │ ├── Stop │ │ │ │ └── StopCardView.swift │ │ │ └── UserProfile │ │ │ │ └── UserProfileView.swift │ │ ├── ETC │ │ │ ├── ImagePickerButton.swift │ │ │ ├── PageIndicatorView.swift │ │ │ └── TitleView.swift │ │ ├── ImageView │ │ │ ├── BlurImageView.swift │ │ │ ├── BottleImageView.swift │ │ │ ├── ImageViewType.swift │ │ │ ├── LocalImageView.swift │ │ │ └── RemoteImageView.swift │ │ ├── List │ │ │ ├── ArrowListView.swift │ │ │ ├── ButtonListView.swift │ │ │ ├── ListContainerView.swift │ │ │ ├── TextListView.swift │ │ │ └── ToggleListView.swift │ │ ├── ListItem │ │ │ └── BottleStorageItem.swift │ │ ├── Popup │ │ │ ├── CountLabel.swift │ │ │ ├── PopupType.swift │ │ │ ├── PopupView.swift │ │ │ ├── TriangleShape.swift │ │ │ └── TriangleView.swift │ │ ├── TextField │ │ │ ├── LineTextField │ │ │ │ └── LineTextField.swift │ │ │ └── LinesTextField │ │ │ │ ├── LinesTextField.swift │ │ │ │ └── TextFieldState.swift │ │ ├── Toast │ │ │ ├── PassthroughWindow.swift │ │ │ ├── RootView.swift │ │ │ ├── ToastGroupView.swift │ │ │ ├── ToastItem.swift │ │ │ ├── ToastItemView.swift │ │ │ └── ToastManager.swift │ │ └── Toggle │ │ │ └── BottleToggle.swift │ │ ├── Constants │ │ └── BottleConstants.swift │ │ ├── Extension │ │ ├── PreferenceKey │ │ │ └── CGSizePreferenceKey.swift │ │ ├── Text+Font.swift │ │ ├── UIImage+Extensions.swift │ │ ├── View+Extensions.swift │ │ ├── View+Font.swift │ │ └── View+RoundedCorner.swift │ │ ├── Font │ │ ├── BottleFontSystem+LaundryGothic.swift │ │ ├── BottleFontSystem+Rotobo.swift │ │ ├── BottleFontSystem+WantedSans.swift │ │ ├── Font+Extensions.swift │ │ └── Fontable.swift │ │ ├── Image │ │ ├── BottleImageSystem+Icon.swift │ │ ├── BottleImageSystem+Illustraition.swift │ │ ├── Image+Extensions.swift │ │ └── Imageable.swift │ │ ├── Modifiers │ │ ├── AsButtonModifier.swift │ │ ├── AsDebounceButtonModifier.swift │ │ ├── AsThrottleButtonModifier.swift │ │ ├── EndEditingModifier.swift │ │ ├── NavigationBarModifier.swift │ │ ├── OnLoadModifier.swift │ │ └── OnLoadTaskModifier.swift │ │ ├── Padding │ │ ├── BottlePaddingType.swift │ │ └── View+Padding.swift │ │ ├── ProgressIndicator │ │ └── LoadingIndicator.swift │ │ ├── Radius │ │ └── BottleRadiusType.swift │ │ ├── ScreenShotPrevent │ │ └── ScreenShotPreventView.swift │ │ ├── Spacing │ │ ├── HStack+Spacing.swift │ │ ├── Spacable.swift │ │ ├── Spacer+Extensions.swift │ │ └── VStack+Spacing.swift │ │ ├── Text │ │ ├── CustomStyleText.swift │ │ ├── LaundryGothicStyleText.swift │ │ ├── RobotoStyleText.swift │ │ └── WantedSansStyleText.swift │ │ └── Token │ │ ├── ColorToken+Background.swift │ │ ├── ColorToken+Border.swift │ │ ├── ColorToken+Brand.swift │ │ ├── ColorToken+Container.swift │ │ ├── ColorToken+IconToken.swift │ │ ├── ColorToken+OnContainer.swift │ │ ├── ColorToken+TextToken.swift │ │ └── ColorToken.swift │ ├── DesignSystemThirdPartyLib │ ├── Interface │ │ └── Sources │ │ │ └── DesignSystemThirdPartyLibInterface.swift │ ├── Project.swift │ └── Sources │ │ └── Source.swift │ ├── Project.swift │ ├── ThirdPartyLib │ ├── Interface │ │ └── Sources │ │ │ └── ThirdPartyLibInterface.swift │ ├── Project.swift │ └── Sources │ │ └── Source.swift │ └── Util │ ├── Interface │ └── Sources │ │ └── Date+Extensions.swift │ ├── Project.swift │ └── Sources │ └── Source.swift ├── README.md ├── Scripts └── GenerateModule.swift ├── Tuist ├── Config.swift ├── Package.resolved ├── Package.swift ├── ProjectDescriptionHelpers │ ├── InfoPlist+Templates.swift │ ├── Project+Templates.swift │ ├── Scheme+Templates.swift │ ├── Settings+Templates.swift │ ├── SoureceFileList+Templates.swift │ └── Target+Templates.swift ├── ResourceSynthesizers │ └── Lottie.stencil └── Templates │ ├── Example │ ├── Example.swift │ └── ExampleSources.stencil │ ├── Interface │ ├── Interface.stencil │ └── Interface.swift │ ├── Module │ ├── Module.swift │ ├── Project.stencil │ └── Sources.stencil │ ├── Sources │ ├── Sources.stencil │ └── Sources.swift │ ├── Testing │ ├── Testing.stencil │ └── Testing.swift │ └── Tests │ ├── Tests.stencil │ └── Tests.swift ├── Workspace.swift └── graph.png /.github/ISSUE_TEMPLATE/이슈-생성-템플릿.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/.github/ISSUE_TEMPLATE/이슈-생성-템플릿.md -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /.mise.toml: -------------------------------------------------------------------------------- 1 | [tools] 2 | tuist = "4.20.0" 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Makefile -------------------------------------------------------------------------------- /Plugins/ConfigurationPlugin/Plugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Plugins/ConfigurationPlugin/Plugin.swift -------------------------------------------------------------------------------- /Plugins/ConfigurationPlugin/ProjectDescriptionHelpers/Configuration+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Plugins/ConfigurationPlugin/ProjectDescriptionHelpers/Configuration+Extensions.swift -------------------------------------------------------------------------------- /Plugins/ConfigurationPlugin/ProjectDescriptionHelpers/ProjectDeployTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Plugins/ConfigurationPlugin/ProjectDescriptionHelpers/ProjectDeployTarget.swift -------------------------------------------------------------------------------- /Plugins/DependencyPlugin/Plugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Plugins/DependencyPlugin/Plugin.swift -------------------------------------------------------------------------------- /Plugins/DependencyPlugin/ProjectDescriptionHelpers/Modules.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Plugins/DependencyPlugin/ProjectDescriptionHelpers/Modules.swift -------------------------------------------------------------------------------- /Plugins/DependencyPlugin/ProjectDescriptionHelpers/Path+Modules.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Plugins/DependencyPlugin/ProjectDescriptionHelpers/Path+Modules.swift -------------------------------------------------------------------------------- /Plugins/DependencyPlugin/ProjectDescriptionHelpers/Project+Environment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Plugins/DependencyPlugin/ProjectDescriptionHelpers/Project+Environment.swift -------------------------------------------------------------------------------- /Plugins/DependencyPlugin/ProjectDescriptionHelpers/TargetDependency+Modules.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Plugins/DependencyPlugin/ProjectDescriptionHelpers/TargetDependency+Modules.swift -------------------------------------------------------------------------------- /Plugins/DependencyPlugin/ProjectDescriptionHelpers/TargetDependency+SPM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Plugins/DependencyPlugin/ProjectDescriptionHelpers/TargetDependency+SPM.swift -------------------------------------------------------------------------------- /Projects/App/Bottle.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Bottle.entitlements -------------------------------------------------------------------------------- /Projects/App/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Project.swift -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-1024.png -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-120 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-120 1.png -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-120.png -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-152.png -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-167.png -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-180.png -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-20.png -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-29.png -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-40 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-40 1.png -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-40 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-40 2.png -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-40.png -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-58 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-58 1.png -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-58.png -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-60.png -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-80 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-80 1.png -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-80.png -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/Icon-87.png -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/splashColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Assets.xcassets/splashColor.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/splashImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Assets.xcassets/splashImage.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/Resources/Assets.xcassets/splashImage.imageset/icon_splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Assets.xcassets/splashImage.imageset/icon_splash.svg -------------------------------------------------------------------------------- /Projects/App/Resources/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Resources/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/App/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Projects/App/Sources/AppRoot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Sources/AppRoot.swift -------------------------------------------------------------------------------- /Projects/App/Tests/BottlesIOSTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/App/Tests/BottlesIOSTests.swift -------------------------------------------------------------------------------- /Projects/Core/KeyChainStore/Interface/Sources/KeyChainStorable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/KeyChainStore/Interface/Sources/KeyChainStorable.swift -------------------------------------------------------------------------------- /Projects/Core/KeyChainStore/Interface/Sources/TokenStoreProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/KeyChainStore/Interface/Sources/TokenStoreProperties.swift -------------------------------------------------------------------------------- /Projects/Core/KeyChainStore/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/KeyChainStore/Project.swift -------------------------------------------------------------------------------- /Projects/Core/KeyChainStore/Sources/KeyChainTokenStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/KeyChainStore/Sources/KeyChainTokenStore.swift -------------------------------------------------------------------------------- /Projects/Core/KeyChainStore/Testing/Sources/KeyChainStoreTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Core/KeyChainStore/Tests/Sources/KeyChainStoreTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/KeyChainStore/Tests/Sources/KeyChainStoreTest.swift -------------------------------------------------------------------------------- /Projects/Core/Logger/Interface/Sources/Log.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/Logger/Interface/Sources/Log.swift -------------------------------------------------------------------------------- /Projects/Core/Logger/Interface/Sources/OSLog+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/Logger/Interface/Sources/OSLog+Extensions.swift -------------------------------------------------------------------------------- /Projects/Core/Logger/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/Logger/Project.swift -------------------------------------------------------------------------------- /Projects/Core/Logger/Sources/Source.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Core/Logger/Testing/Sources/LoggerTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Core/Logger/Tests/Sources/LoggerTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/Logger/Tests/Sources/LoggerTest.swift -------------------------------------------------------------------------------- /Projects/Core/Network/Interface/Sources/API/AnyAPIType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/Network/Interface/Sources/API/AnyAPIType.swift -------------------------------------------------------------------------------- /Projects/Core/Network/Interface/Sources/API/BaseTargetType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/Network/Interface/Sources/API/BaseTargetType.swift -------------------------------------------------------------------------------- /Projects/Core/Network/Interface/Sources/NetworkManager/NetworkManagable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/Network/Interface/Sources/NetworkManager/NetworkManagable.swift -------------------------------------------------------------------------------- /Projects/Core/Network/Interface/Sources/Provider/Providable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/Network/Interface/Sources/Provider/Providable.swift -------------------------------------------------------------------------------- /Projects/Core/Network/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/Network/Project.swift -------------------------------------------------------------------------------- /Projects/Core/Network/Sources/Interceptor/Refresh/RefreshAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/Network/Sources/Interceptor/Refresh/RefreshAPI.swift -------------------------------------------------------------------------------- /Projects/Core/Network/Sources/Interceptor/Refresh/RefreshResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/Network/Sources/Interceptor/Refresh/RefreshResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Core/Network/Sources/Interceptor/TokenInterceptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/Network/Sources/Interceptor/TokenInterceptor.swift -------------------------------------------------------------------------------- /Projects/Core/Network/Sources/MoyaPulgins/MoyaLoggerPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/Network/Sources/MoyaPulgins/MoyaLoggerPlugin.swift -------------------------------------------------------------------------------- /Projects/Core/Network/Sources/NetworkManager/NetworkManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/Network/Sources/NetworkManager/NetworkManager.swift -------------------------------------------------------------------------------- /Projects/Core/Network/Sources/Provider/Provider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/Network/Sources/Provider/Provider.swift -------------------------------------------------------------------------------- /Projects/Core/Network/Testing/Sources/NetworkTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Core/Network/Tests/Sources/NetworkTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/Network/Tests/Sources/NetworkTest.swift -------------------------------------------------------------------------------- /Projects/Core/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/Project.swift -------------------------------------------------------------------------------- /Projects/Core/Toast/Interface/Sources/ToastClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/Toast/Interface/Sources/ToastClient.swift -------------------------------------------------------------------------------- /Projects/Core/Toast/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/Toast/Project.swift -------------------------------------------------------------------------------- /Projects/Core/Toast/Sources/Source.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Core/Toast/Testing/Sources/ToastTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Core/Toast/Tests/Sources/ToastTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/Toast/Tests/Sources/ToastTest.swift -------------------------------------------------------------------------------- /Projects/Core/URLHandler/Interface/Sources/BottleURLType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/URLHandler/Interface/Sources/BottleURLType.swift -------------------------------------------------------------------------------- /Projects/Core/URLHandler/Interface/Sources/URLHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/URLHandler/Interface/Sources/URLHandler.swift -------------------------------------------------------------------------------- /Projects/Core/URLHandler/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/URLHandler/Project.swift -------------------------------------------------------------------------------- /Projects/Core/URLHandler/Sources/Source.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Core/URLHandler/Testing/Sources/URLHandlerTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Core/URLHandler/Tests/Sources/URLHandlerTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/URLHandler/Tests/Sources/URLHandlerTest.swift -------------------------------------------------------------------------------- /Projects/Core/Util/Interface/Sources/Source.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/Util/Interface/Sources/Source.swift -------------------------------------------------------------------------------- /Projects/Core/Util/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/Util/Project.swift -------------------------------------------------------------------------------- /Projects/Core/Util/Sources/Source.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/Util/Sources/Source.swift -------------------------------------------------------------------------------- /Projects/Core/WebView/Interface/Sources/BottleWebViewAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/WebView/Interface/Sources/BottleWebViewAction.swift -------------------------------------------------------------------------------- /Projects/Core/WebView/Interface/Sources/WebViewMessageHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/WebView/Interface/Sources/WebViewMessageHandler.swift -------------------------------------------------------------------------------- /Projects/Core/WebView/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/WebView/Project.swift -------------------------------------------------------------------------------- /Projects/Core/WebView/Sources/Source.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/WebView/Sources/Source.swift -------------------------------------------------------------------------------- /Projects/Core/WebView/Testing/Sources/WebViewTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Core/WebView/Tests/Sources/WebViewTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Core/WebView/Tests/Sources/WebViewTest.swift -------------------------------------------------------------------------------- /Projects/Domain/Application/Interface/Sources/ApplicationClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Application/Interface/Sources/ApplicationClient.swift -------------------------------------------------------------------------------- /Projects/Domain/Application/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Application/Project.swift -------------------------------------------------------------------------------- /Projects/Domain/Application/Sources/ApplicationClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Application/Sources/ApplicationClient.swift -------------------------------------------------------------------------------- /Projects/Domain/Application/Testing/Sources/ApplicationTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Domain/Application/Tests/Sources/ApplicationTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Application/Tests/Sources/ApplicationTest.swift -------------------------------------------------------------------------------- /Projects/Domain/Auth/Interface/Sources/API/AppleAuthAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Auth/Interface/Sources/API/AppleAuthAPI.swift -------------------------------------------------------------------------------- /Projects/Domain/Auth/Interface/Sources/API/AuthAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Auth/Interface/Sources/API/AuthAPI.swift -------------------------------------------------------------------------------- /Projects/Domain/Auth/Interface/Sources/AuthClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Auth/Interface/Sources/AuthClient.swift -------------------------------------------------------------------------------- /Projects/Domain/Auth/Interface/Sources/AuthInterface.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | 3 | public protocol AuthInterface { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /Projects/Domain/Auth/Interface/Sources/DTO/Request/LogOutRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Auth/Interface/Sources/DTO/Request/LogOutRequestDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/Auth/Interface/Sources/DTO/Request/ProfileRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Auth/Interface/Sources/DTO/Request/ProfileRequestDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/Auth/Interface/Sources/DTO/Request/SignInRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Auth/Interface/Sources/DTO/Request/SignInRequestDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/Auth/Interface/Sources/DTO/Response/AppleTokenResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Auth/Interface/Sources/DTO/Response/AppleTokenResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/Auth/Interface/Sources/DTO/Response/ClientSecretResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Auth/Interface/Sources/DTO/Response/ClientSecretResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/Auth/Interface/Sources/DTO/Response/SignInResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Auth/Interface/Sources/DTO/Response/SignInResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/Auth/Interface/Sources/DTO/Response/UpdateVersionResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Auth/Interface/Sources/DTO/Response/UpdateVersionResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/Auth/Interface/Sources/DataSource/LocalAuthDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Auth/Interface/Sources/DataSource/LocalAuthDataSource.swift -------------------------------------------------------------------------------- /Projects/Domain/Auth/Interface/Sources/Entity/SignInResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Auth/Interface/Sources/Entity/SignInResult.swift -------------------------------------------------------------------------------- /Projects/Domain/Auth/Interface/Sources/Entity/Token.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Auth/Interface/Sources/Entity/Token.swift -------------------------------------------------------------------------------- /Projects/Domain/Auth/Interface/Sources/LoginManager/LoginManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Auth/Interface/Sources/LoginManager/LoginManager.swift -------------------------------------------------------------------------------- /Projects/Domain/Auth/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Auth/Project.swift -------------------------------------------------------------------------------- /Projects/Domain/Auth/Sources/AuthClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Auth/Sources/AuthClient.swift -------------------------------------------------------------------------------- /Projects/Domain/Auth/Sources/DataSource/LocalAuthDataSourceImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Auth/Sources/DataSource/LocalAuthDataSourceImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/Auth/Sources/LoginManager/AppleLoginManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Auth/Sources/LoginManager/AppleLoginManager.swift -------------------------------------------------------------------------------- /Projects/Domain/Auth/Sources/LoginManager/LoginManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Auth/Sources/LoginManager/LoginManager.swift -------------------------------------------------------------------------------- /Projects/Domain/Auth/Testing/Sources/AuthTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Domain/Auth/Tests/Sources/AuthTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Auth/Tests/Sources/AuthTest.swift -------------------------------------------------------------------------------- /Projects/Domain/Bottle/Interface/Sources/API/BottleAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Bottle/Interface/Sources/API/BottleAPI.swift -------------------------------------------------------------------------------- /Projects/Domain/Bottle/Interface/Sources/BottleClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Bottle/Interface/Sources/BottleClient.swift -------------------------------------------------------------------------------- /Projects/Domain/Bottle/Interface/Sources/DTO/Request/BottleImageShareRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Bottle/Interface/Sources/DTO/Request/BottleImageShareRequestDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/Bottle/Interface/Sources/DTO/Request/FinalSelectRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Bottle/Interface/Sources/DTO/Request/FinalSelectRequestDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/Bottle/Interface/Sources/DTO/Request/RegisterLetterAnswerRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Bottle/Interface/Sources/DTO/Request/RegisterLetterAnswerRequestDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/Bottle/Interface/Sources/DTO/Response/BottleListResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Bottle/Interface/Sources/DTO/Response/BottleListResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/Bottle/Interface/Sources/DTO/Response/BottlePingPongResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Bottle/Interface/Sources/DTO/Response/BottlePingPongResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/Bottle/Interface/Sources/DTO/Response/BottleStorageListResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Bottle/Interface/Sources/DTO/Response/BottleStorageListResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/Bottle/Interface/Sources/Entity/BottlePingPong.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Bottle/Interface/Sources/Entity/BottlePingPong.swift -------------------------------------------------------------------------------- /Projects/Domain/Bottle/Interface/Sources/Entity/BottleStorageList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Bottle/Interface/Sources/Entity/BottleStorageList.swift -------------------------------------------------------------------------------- /Projects/Domain/Bottle/Interface/Sources/Entity/UserBottleInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Bottle/Interface/Sources/Entity/UserBottleInfo.swift -------------------------------------------------------------------------------- /Projects/Domain/Bottle/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Bottle/Project.swift -------------------------------------------------------------------------------- /Projects/Domain/Bottle/Sources/BottleClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Bottle/Sources/BottleClient.swift -------------------------------------------------------------------------------- /Projects/Domain/Bottle/Testing/Sources/BottleTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Domain/Bottle/Tests/Sources/BottleTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Bottle/Tests/Sources/BottleTest.swift -------------------------------------------------------------------------------- /Projects/Domain/Error/Interface/Sources/DomainError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Error/Interface/Sources/DomainError.swift -------------------------------------------------------------------------------- /Projects/Domain/Error/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Error/Project.swift -------------------------------------------------------------------------------- /Projects/Domain/Error/Sources/Source.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Domain/Profile/Interface/Sources/API/ProfileAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Profile/Interface/Sources/API/ProfileAPI.swift -------------------------------------------------------------------------------- /Projects/Domain/Profile/Interface/Sources/DTO/Request/MatchingActivateRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Profile/Interface/Sources/DTO/Request/MatchingActivateRequestDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/Profile/Interface/Sources/DTO/Request/RegisterIntroductionRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Profile/Interface/Sources/DTO/Request/RegisterIntroductionRequestDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/Profile/Interface/Sources/DTO/Response/IntroductionExistResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Profile/Interface/Sources/DTO/Response/IntroductionExistResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/Profile/Interface/Sources/DTO/Response/ProfileResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Profile/Interface/Sources/DTO/Response/ProfileResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/Profile/Interface/Sources/DTO/Response/ProfileStatusResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Profile/Interface/Sources/DTO/Response/ProfileStatusResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/Profile/Interface/Sources/Entity/UserInterest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Profile/Interface/Sources/Entity/UserInterest.swift -------------------------------------------------------------------------------- /Projects/Domain/Profile/Interface/Sources/Entity/UserProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Profile/Interface/Sources/Entity/UserProfile.swift -------------------------------------------------------------------------------- /Projects/Domain/Profile/Interface/Sources/Entity/UserProfileStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Profile/Interface/Sources/Entity/UserProfileStatus.swift -------------------------------------------------------------------------------- /Projects/Domain/Profile/Interface/Sources/Entity/UserRegion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Profile/Interface/Sources/Entity/UserRegion.swift -------------------------------------------------------------------------------- /Projects/Domain/Profile/Interface/Sources/ProfileClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Profile/Interface/Sources/ProfileClient.swift -------------------------------------------------------------------------------- /Projects/Domain/Profile/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Profile/Project.swift -------------------------------------------------------------------------------- /Projects/Domain/Profile/Sources/ProfileClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Profile/Sources/ProfileClient.swift -------------------------------------------------------------------------------- /Projects/Domain/Profile/Testing/Sources/ProfileTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Domain/Profile/Tests/Sources/ProfileTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Profile/Tests/Sources/ProfileTest.swift -------------------------------------------------------------------------------- /Projects/Domain/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Project.swift -------------------------------------------------------------------------------- /Projects/Domain/Report/Interface/Sources/API/ReportAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Report/Interface/Sources/API/ReportAPI.swift -------------------------------------------------------------------------------- /Projects/Domain/Report/Interface/Sources/DTO/Request/ReportUserRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Report/Interface/Sources/DTO/Request/ReportUserRequestDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/Report/Interface/Sources/Entity/UserReportInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Report/Interface/Sources/Entity/UserReportInfo.swift -------------------------------------------------------------------------------- /Projects/Domain/Report/Interface/Sources/ReportClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Report/Interface/Sources/ReportClient.swift -------------------------------------------------------------------------------- /Projects/Domain/Report/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Report/Project.swift -------------------------------------------------------------------------------- /Projects/Domain/Report/Sources/ReportClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Report/Sources/ReportClient.swift -------------------------------------------------------------------------------- /Projects/Domain/Report/Sources/Source.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Domain/Report/Testing/Sources/ReportTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Domain/Report/Tests/Sources/ReportTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/Report/Tests/Sources/ReportTest.swift -------------------------------------------------------------------------------- /Projects/Domain/User/Interface/Sources/API/UserAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/User/Interface/Sources/API/UserAPI.swift -------------------------------------------------------------------------------- /Projects/Domain/User/Interface/Sources/DTO/Request/AlertStateRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/User/Interface/Sources/DTO/Request/AlertStateRequestDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/User/Interface/Sources/DTO/Request/BlockContactRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/User/Interface/Sources/DTO/Request/BlockContactRequestDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/User/Interface/Sources/DTO/Request/UpdatePushNotificationAllowStatusRequestDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/User/Interface/Sources/DTO/Request/UpdatePushNotificationAllowStatusRequestDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/User/Interface/Sources/DTO/Response/AlertStateReponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/User/Interface/Sources/DTO/Response/AlertStateReponseDTO.swift -------------------------------------------------------------------------------- /Projects/Domain/User/Interface/Sources/Entity/AlertState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/User/Interface/Sources/Entity/AlertState.swift -------------------------------------------------------------------------------- /Projects/Domain/User/Interface/Sources/Entity/AlertType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/User/Interface/Sources/Entity/AlertType.swift -------------------------------------------------------------------------------- /Projects/Domain/User/Interface/Sources/NeedUpdatePushNotificationAllowStatusRemotelyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/User/Interface/Sources/NeedUpdatePushNotificationAllowStatusRemotelyType.swift -------------------------------------------------------------------------------- /Projects/Domain/User/Interface/Sources/UserClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/User/Interface/Sources/UserClient.swift -------------------------------------------------------------------------------- /Projects/Domain/User/Interface/Sources/UserError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/User/Interface/Sources/UserError.swift -------------------------------------------------------------------------------- /Projects/Domain/User/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/User/Project.swift -------------------------------------------------------------------------------- /Projects/Domain/User/Sources/UserClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/User/Sources/UserClient.swift -------------------------------------------------------------------------------- /Projects/Domain/User/Testing/Sources/UserTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Domain/User/Tests/Sources/UserTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/User/Tests/Sources/UserTest.swift -------------------------------------------------------------------------------- /Projects/Domain/WebView/Interface/Sources/WebViewHandleClientInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/WebView/Interface/Sources/WebViewHandleClientInterface.swift -------------------------------------------------------------------------------- /Projects/Domain/WebView/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/WebView/Project.swift -------------------------------------------------------------------------------- /Projects/Domain/WebView/Sources/WebViewClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/WebView/Sources/WebViewClient.swift -------------------------------------------------------------------------------- /Projects/Domain/WebView/Testing/Sources/WebViewTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | 3 | -------------------------------------------------------------------------------- /Projects/Domain/WebView/Tests/Sources/WebViewTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Domain/WebView/Tests/Sources/WebViewTest.swift -------------------------------------------------------------------------------- /Projects/Feature/BaseWebView/Example/Sources/AppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BaseWebView/Example/Sources/AppView.swift -------------------------------------------------------------------------------- /Projects/Feature/BaseWebView/Interface/Sources/BaseWebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BaseWebView/Interface/Sources/BaseWebView.swift -------------------------------------------------------------------------------- /Projects/Feature/BaseWebView/Interface/Sources/BaseWebViewType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BaseWebView/Interface/Sources/BaseWebViewType.swift -------------------------------------------------------------------------------- /Projects/Feature/BaseWebView/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BaseWebView/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/BaseWebView/Sources/Source.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Feature/BaseWebView/Testing/Sources/BottleWebViewTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Feature/BaseWebView/Tests/Sources/BottleWebViewTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BaseWebView/Tests/Sources/BottleWebViewTest.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleArrival/Example/Sources/AppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleArrival/Example/Sources/AppView.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleArrival/Interface/Sources/BottleArrival/BottleArrivalFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleArrival/Interface/Sources/BottleArrival/BottleArrivalFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleArrival/Interface/Sources/BottleArrival/BottleArrivalFeatureInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleArrival/Interface/Sources/BottleArrival/BottleArrivalFeatureInterface.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleArrival/Interface/Sources/BottleArrival/BottleArrivalView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleArrival/Interface/Sources/BottleArrival/BottleArrivalView.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleArrival/Interface/Sources/BottleArrivalDetail/BottleArrivalDetailFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleArrival/Interface/Sources/BottleArrivalDetail/BottleArrivalDetailFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleArrival/Interface/Sources/BottleArrivalDetail/BottleArrivalDetailFeatureInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleArrival/Interface/Sources/BottleArrivalDetail/BottleArrivalDetailFeatureInterface.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleArrival/Interface/Sources/BottleArrivalDetail/BottleArrivalDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleArrival/Interface/Sources/BottleArrivalDetail/BottleArrivalDetailView.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleArrival/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleArrival/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleArrival/Sources/Source.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Feature/BottleArrival/Testing/Sources/BottleArrivalTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Feature/BottleArrival/Tests/Sources/BottleArrivalTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleArrival/Tests/Sources/BottleArrivalTest.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleStorage/Example/Sources/AppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleStorage/Example/Sources/AppView.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleStorage/Interface/Sources/BottleStorage/BottleStorageFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleStorage/Interface/Sources/BottleStorage/BottleStorageFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleStorage/Interface/Sources/BottleStorage/BottleStorageFeatureInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleStorage/Interface/Sources/BottleStorage/BottleStorageFeatureInterface.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleStorage/Interface/Sources/BottleStorage/BottleStorageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleStorage/Interface/Sources/BottleStorage/BottleStorageView.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/FinalSelectPingPongView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/FinalSelectPingPongView.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/PhotoSharePingPongView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/PhotoSharePingPongView.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/PingPongDetail/PingPongDetailFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/PingPongDetail/PingPongDetailFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/PingPongDetail/PingPongDetailFeatureInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/PingPongDetail/PingPongDetailFeatureInterface.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/PingPongDetail/PingPongDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/PingPongDetail/PingPongDetailView.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/QuestionPingPongView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/QuestionPingPongView.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/SubViews/Introduction/IntroductionFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/SubViews/Introduction/IntroductionFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/SubViews/Introduction/IntroductionFeatureInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/SubViews/Introduction/IntroductionFeatureInterface.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/SubViews/Introduction/IntroductionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/SubViews/Introduction/IntroductionView.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/SubViews/Matching/MatchingFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/SubViews/Matching/MatchingFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/SubViews/Matching/MatchingFeatureInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/SubViews/Matching/MatchingFeatureInterface.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/SubViews/Matching/MatchingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/SubViews/Matching/MatchingView.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/SubViews/QuestionAndAnswer/QuestionAndAnswerFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/SubViews/QuestionAndAnswer/QuestionAndAnswerFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/SubViews/QuestionAndAnswer/QuestionAndAnswerFeatureInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/SubViews/QuestionAndAnswer/QuestionAndAnswerFeatureInterface.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/SubViews/QuestionAndAnswer/QuestionAndAnswerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleStorage/Interface/Sources/PingPongDetail/View/SubViews/QuestionAndAnswer/QuestionAndAnswerView.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleStorage/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleStorage/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleStorage/Sources/Source.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleStorage/Sources/Source.swift -------------------------------------------------------------------------------- /Projects/Feature/BottleStorage/Testing/Sources/BottleStorageTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Feature/BottleStorage/Tests/Sources/BottleStorageTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/BottleStorage/Tests/Sources/BottleStorageTest.swift -------------------------------------------------------------------------------- /Projects/Feature/GeneralSignUp/Example/Sources/AppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/GeneralSignUp/Example/Sources/AppView.swift -------------------------------------------------------------------------------- /Projects/Feature/GeneralSignUp/Interface/Sources/GeneralSignUpFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/GeneralSignUp/Interface/Sources/GeneralSignUpFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/GeneralSignUp/Interface/Sources/GeneralSignUpFeatureInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/GeneralSignUp/Interface/Sources/GeneralSignUpFeatureInterface.swift -------------------------------------------------------------------------------- /Projects/Feature/GeneralSignUp/Interface/Sources/GeneralSignUpView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/GeneralSignUp/Interface/Sources/GeneralSignUpView.swift -------------------------------------------------------------------------------- /Projects/Feature/GeneralSignUp/Interface/Sources/TermsWebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/GeneralSignUp/Interface/Sources/TermsWebView.swift -------------------------------------------------------------------------------- /Projects/Feature/GeneralSignUp/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/GeneralSignUp/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/GeneralSignUp/Sources/Source.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/GeneralSignUp/Sources/Source.swift -------------------------------------------------------------------------------- /Projects/Feature/GeneralSignUp/Testing/Sources/GeneralSignUpTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Feature/GeneralSignUp/Tests/Sources/GeneralSignUpTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/GeneralSignUp/Tests/Sources/GeneralSignUpTest.swift -------------------------------------------------------------------------------- /Projects/Feature/GoodFeeling/Example/Sources/AppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/GoodFeeling/Example/Sources/AppView.swift -------------------------------------------------------------------------------- /Projects/Feature/GoodFeeling/Interface/Sources/GoodFeeling/GoodFeelingFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/GoodFeeling/Interface/Sources/GoodFeeling/GoodFeelingFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/GoodFeeling/Interface/Sources/GoodFeeling/GoodFeelingFeatureInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/GoodFeeling/Interface/Sources/GoodFeeling/GoodFeelingFeatureInterface.swift -------------------------------------------------------------------------------- /Projects/Feature/GoodFeeling/Interface/Sources/GoodFeeling/GoodFeelingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/GoodFeeling/Interface/Sources/GoodFeeling/GoodFeelingView.swift -------------------------------------------------------------------------------- /Projects/Feature/GoodFeeling/Interface/Sources/Root/FeatureGoodFeelingRootView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/GoodFeeling/Interface/Sources/Root/FeatureGoodFeelingRootView.swift -------------------------------------------------------------------------------- /Projects/Feature/GoodFeeling/Interface/Sources/Root/GoodFeelingRootFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/GoodFeeling/Interface/Sources/Root/GoodFeelingRootFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/GoodFeeling/Interface/Sources/Root/GoodFeelingRootFeatureInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/GoodFeeling/Interface/Sources/Root/GoodFeelingRootFeatureInterface.swift -------------------------------------------------------------------------------- /Projects/Feature/GoodFeeling/Interface/Sources/SentBottleDetail/SentBottleDetailFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/GoodFeeling/Interface/Sources/SentBottleDetail/SentBottleDetailFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/GoodFeeling/Interface/Sources/SentBottleDetail/SentBottleDetailFeatureInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/GoodFeeling/Interface/Sources/SentBottleDetail/SentBottleDetailFeatureInterface.swift -------------------------------------------------------------------------------- /Projects/Feature/GoodFeeling/Interface/Sources/SentBottleDetail/SentBottleDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/GoodFeeling/Interface/Sources/SentBottleDetail/SentBottleDetailView.swift -------------------------------------------------------------------------------- /Projects/Feature/GoodFeeling/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/GoodFeeling/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/GoodFeeling/Sources/Source.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Feature/GoodFeeling/Testing/Sources/GoodFeelingTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Feature/GoodFeeling/Tests/Sources/GoodFeelingTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/GoodFeeling/Tests/Sources/GoodFeelingTest.swift -------------------------------------------------------------------------------- /Projects/Feature/Guide/Example/Sources/AppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Guide/Example/Sources/AppView.swift -------------------------------------------------------------------------------- /Projects/Feature/Guide/Interface/Sources/MainGuide/MainGuideFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Guide/Interface/Sources/MainGuide/MainGuideFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/Guide/Interface/Sources/MainGuide/MainGuideView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Guide/Interface/Sources/MainGuide/MainGuideView.swift -------------------------------------------------------------------------------- /Projects/Feature/Guide/Interface/Sources/PhotoShareGuide/PhotoShareGuideFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Guide/Interface/Sources/PhotoShareGuide/PhotoShareGuideFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/Guide/Interface/Sources/PhotoShareGuide/PhotoShareGuideView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Guide/Interface/Sources/PhotoShareGuide/PhotoShareGuideView.swift -------------------------------------------------------------------------------- /Projects/Feature/Guide/Interface/Sources/PingPongGuide/PingPongGuideFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Guide/Interface/Sources/PingPongGuide/PingPongGuideFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/Guide/Interface/Sources/PingPongGuide/PingPongGuideView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Guide/Interface/Sources/PingPongGuide/PingPongGuideView.swift -------------------------------------------------------------------------------- /Projects/Feature/Guide/Interface/Sources/StartGuide/StartGuideFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Guide/Interface/Sources/StartGuide/StartGuideFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/Guide/Interface/Sources/StartGuide/StartGuideView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Guide/Interface/Sources/StartGuide/StartGuideView.swift -------------------------------------------------------------------------------- /Projects/Feature/Guide/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Guide/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/Guide/Sources/Sources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Guide/Sources/Sources.swift -------------------------------------------------------------------------------- /Projects/Feature/Guide/Testing/Sources/GuideTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Feature/Guide/Tests/Sources/GuideTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Guide/Tests/Sources/GuideTest.swift -------------------------------------------------------------------------------- /Projects/Feature/Login/Example/Sources/AppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Login/Example/Sources/AppView.swift -------------------------------------------------------------------------------- /Projects/Feature/Login/Interface/LoginView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Login/Interface/LoginView.swift -------------------------------------------------------------------------------- /Projects/Feature/Login/Interface/Sources/GeneralLogIn/GeneralLogInFeatureInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Login/Interface/Sources/GeneralLogIn/GeneralLogInFeatureInterface.swift -------------------------------------------------------------------------------- /Projects/Feature/Login/Interface/Sources/GeneralLogIn/GeneralLogInView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Login/Interface/Sources/GeneralLogIn/GeneralLogInView.swift -------------------------------------------------------------------------------- /Projects/Feature/Login/Interface/Sources/GeneralLogIn/GeneralLoginFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Login/Interface/Sources/GeneralLogIn/GeneralLoginFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/Login/Interface/Sources/Login/AppleLoginFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Login/Interface/Sources/Login/AppleLoginFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/Login/Interface/Sources/Login/AppleLoginFeatureInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Login/Interface/Sources/Login/AppleLoginFeatureInterface.swift -------------------------------------------------------------------------------- /Projects/Feature/Login/Interface/Sources/Login/AppleLoginView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Login/Interface/Sources/Login/AppleLoginView.swift -------------------------------------------------------------------------------- /Projects/Feature/Login/Interface/Sources/Login/LoginFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Login/Interface/Sources/Login/LoginFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/Login/Interface/Sources/Login/LoginFeatureInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Login/Interface/Sources/Login/LoginFeatureInterface.swift -------------------------------------------------------------------------------- /Projects/Feature/Login/Interface/Sources/Login/LoginView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Login/Interface/Sources/Login/LoginView.swift -------------------------------------------------------------------------------- /Projects/Feature/Login/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Login/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/Login/Sources/Source.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Login/Sources/Source.swift -------------------------------------------------------------------------------- /Projects/Feature/Login/Testing/Sources/LoginTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Feature/Login/Tests/Sources/LoginTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Login/Tests/Sources/LoginTest.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPage/Example/Sources/AppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/MyPage/Example/Sources/AppView.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPage/Interface/Sources/AccountSetting/AccountSettingFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/MyPage/Interface/Sources/AccountSetting/AccountSettingFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPage/Interface/Sources/AccountSetting/AccountSettingFeatureInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/MyPage/Interface/Sources/AccountSetting/AccountSettingFeatureInterface.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPage/Interface/Sources/AccountSetting/AccountSettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/MyPage/Interface/Sources/AccountSetting/AccountSettingView.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPage/Interface/Sources/AlertSetting/AlertSettingFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/MyPage/Interface/Sources/AlertSetting/AlertSettingFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPage/Interface/Sources/AlertSetting/AlertSettingFeatureInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/MyPage/Interface/Sources/AlertSetting/AlertSettingFeatureInterface.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPage/Interface/Sources/AlertSetting/AlertSettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/MyPage/Interface/Sources/AlertSetting/AlertSettingView.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPage/Interface/Sources/EditProfile/EditProfileFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/MyPage/Interface/Sources/EditProfile/EditProfileFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPage/Interface/Sources/EditProfile/EditProfileFeatureInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/MyPage/Interface/Sources/EditProfile/EditProfileFeatureInterface.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPage/Interface/Sources/EditProfile/ProfileEditView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/MyPage/Interface/Sources/EditProfile/ProfileEditView.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPage/Interface/Sources/MyPage/MyPageFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/MyPage/Interface/Sources/MyPage/MyPageFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPage/Interface/Sources/MyPage/MyPageFeatureInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/MyPage/Interface/Sources/MyPage/MyPageFeatureInterface.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPage/Interface/Sources/MyPage/MyPageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/MyPage/Interface/Sources/MyPage/MyPageView.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPage/Interface/Sources/MyPageRootFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/MyPage/Interface/Sources/MyPageRootFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPage/Interface/Sources/MyPageRootFeatureInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/MyPage/Interface/Sources/MyPageRootFeatureInterface.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPage/Interface/Sources/MyPageRootView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/MyPage/Interface/Sources/MyPageRootView.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPage/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/MyPage/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPage/Sources/Source.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/MyPage/Sources/Source.swift -------------------------------------------------------------------------------- /Projects/Feature/MyPage/Testing/Sources/MyPageTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Feature/MyPage/Tests/Sources/MyPageTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/MyPage/Tests/Sources/MyPageTest.swift -------------------------------------------------------------------------------- /Projects/Feature/Onboarding/Example/Sources/AppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Onboarding/Example/Sources/AppView.swift -------------------------------------------------------------------------------- /Projects/Feature/Onboarding/Interface/Sources/Onboarding/OnboardingFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Onboarding/Interface/Sources/Onboarding/OnboardingFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/Onboarding/Interface/Sources/Onboarding/OnboardingFeatureInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Onboarding/Interface/Sources/Onboarding/OnboardingFeatureInterface.swift -------------------------------------------------------------------------------- /Projects/Feature/Onboarding/Interface/Sources/Onboarding/OnboardingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Onboarding/Interface/Sources/Onboarding/OnboardingView.swift -------------------------------------------------------------------------------- /Projects/Feature/Onboarding/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Onboarding/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/Onboarding/Sources/Source.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Onboarding/Sources/Source.swift -------------------------------------------------------------------------------- /Projects/Feature/Onboarding/Testing/Sources/OnboardingTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Feature/Onboarding/Tests/Sources/OnboardingTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Onboarding/Tests/Sources/OnboardingTest.swift -------------------------------------------------------------------------------- /Projects/Feature/ProfileSetup/Example/Sources/AppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/ProfileSetup/Example/Sources/AppView.swift -------------------------------------------------------------------------------- /Projects/Feature/ProfileSetup/Interface/Sources/IntroductionSetup/IntroductionSetupFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/ProfileSetup/Interface/Sources/IntroductionSetup/IntroductionSetupFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/ProfileSetup/Interface/Sources/IntroductionSetup/IntroductionSetupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/ProfileSetup/Interface/Sources/IntroductionSetup/IntroductionSetupView.swift -------------------------------------------------------------------------------- /Projects/Feature/ProfileSetup/Interface/Sources/ProfileImageUpload/ProfileImageUploadFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/ProfileSetup/Interface/Sources/ProfileImageUpload/ProfileImageUploadFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/ProfileSetup/Interface/Sources/ProfileImageUpload/ProfileImageUploadView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/ProfileSetup/Interface/Sources/ProfileImageUpload/ProfileImageUploadView.swift -------------------------------------------------------------------------------- /Projects/Feature/ProfileSetup/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/ProfileSetup/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/ProfileSetup/Sources/Sources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/ProfileSetup/Sources/Sources.swift -------------------------------------------------------------------------------- /Projects/Feature/ProfileSetup/Testing/Sources/ProfileSetupTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Feature/ProfileSetup/Tests/Sources/ProfileSetupTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/ProfileSetup/Tests/Sources/ProfileSetupTest.swift -------------------------------------------------------------------------------- /Projects/Feature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/Report/Example/Sources/AppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Report/Example/Sources/AppView.swift -------------------------------------------------------------------------------- /Projects/Feature/Report/Interface/Sources/ReportUserFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Report/Interface/Sources/ReportUserFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/Report/Interface/Sources/ReportUserFeatureInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Report/Interface/Sources/ReportUserFeatureInterface.swift -------------------------------------------------------------------------------- /Projects/Feature/Report/Interface/Sources/ReportUserView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Report/Interface/Sources/ReportUserView.swift -------------------------------------------------------------------------------- /Projects/Feature/Report/Interface/Sources/UserReportProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Report/Interface/Sources/UserReportProfile.swift -------------------------------------------------------------------------------- /Projects/Feature/Report/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Report/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/Report/Sources/Source.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Feature/Report/Testing/Sources/ReportTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Feature/Report/Tests/Sources/ReportTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Report/Tests/Sources/ReportTest.swift -------------------------------------------------------------------------------- /Projects/Feature/SandBeach/Example/Sources/AppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/SandBeach/Example/Sources/AppView.swift -------------------------------------------------------------------------------- /Projects/Feature/SandBeach/Interface/Sources/Root/SandBeachRootFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/SandBeach/Interface/Sources/Root/SandBeachRootFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/SandBeach/Interface/Sources/Root/SandBeachRootView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/SandBeach/Interface/Sources/Root/SandBeachRootView.swift -------------------------------------------------------------------------------- /Projects/Feature/SandBeach/Interface/Sources/SandBeach/SandBeachFeatureInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/SandBeach/Interface/Sources/SandBeach/SandBeachFeatureInterface.swift -------------------------------------------------------------------------------- /Projects/Feature/SandBeach/Interface/Sources/SandBeach/SandBeachView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/SandBeach/Interface/Sources/SandBeach/SandBeachView.swift -------------------------------------------------------------------------------- /Projects/Feature/SandBeach/Interface/Sources/SandBeach/UserStateType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/SandBeach/Interface/Sources/SandBeach/UserStateType.swift -------------------------------------------------------------------------------- /Projects/Feature/SandBeach/Interface/Sources/SandBeachCoachMark/SandBeachCoachMarkFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/SandBeach/Interface/Sources/SandBeachCoachMark/SandBeachCoachMarkFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/SandBeach/Interface/Sources/SandBeachCoachMark/SandBeachCoachMarkFeatureInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/SandBeach/Interface/Sources/SandBeachCoachMark/SandBeachCoachMarkFeatureInterface.swift -------------------------------------------------------------------------------- /Projects/Feature/SandBeach/Interface/Sources/SandBeachCoachMark/SandBeachCoachMarkView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/SandBeach/Interface/Sources/SandBeachCoachMark/SandBeachCoachMarkView.swift -------------------------------------------------------------------------------- /Projects/Feature/SandBeach/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/SandBeach/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/SandBeach/Sources/SandBeach/SandBeachFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/SandBeach/Sources/SandBeach/SandBeachFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/SandBeach/Testing/Sources/SandBeachTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Feature/SandBeach/Tests/Sources/SandBeachTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/SandBeach/Tests/Sources/SandBeachTest.swift -------------------------------------------------------------------------------- /Projects/Feature/Sources/App/AppDelegateFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Sources/App/AppDelegateFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/Sources/App/AppFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Sources/App/AppFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/Sources/App/AppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Sources/App/AppView.swift -------------------------------------------------------------------------------- /Projects/Feature/Sources/SplashView/SplashFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Sources/SplashView/SplashFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/Sources/SplashView/SplashView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Sources/SplashView/SplashView.swift -------------------------------------------------------------------------------- /Projects/Feature/Sources/TabView/MainTabView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Sources/TabView/MainTabView.swift -------------------------------------------------------------------------------- /Projects/Feature/Sources/TabView/MainTabViewFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/Sources/TabView/MainTabViewFeature.swift -------------------------------------------------------------------------------- /Projects/Feature/TabBar/Example/Sources/AppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/TabBar/Example/Sources/AppView.swift -------------------------------------------------------------------------------- /Projects/Feature/TabBar/Interface/Sources/TabBarModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/TabBar/Interface/Sources/TabBarModifier.swift -------------------------------------------------------------------------------- /Projects/Feature/TabBar/Interface/Sources/TabType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/TabBar/Interface/Sources/TabType.swift -------------------------------------------------------------------------------- /Projects/Feature/TabBar/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/TabBar/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/TabBar/Sources/Source.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Feature/TabBar/Testing/Sources/TabBarTesting.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Feature/TabBar/Tests/Sources/TabBarTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Feature/TabBar/Tests/Sources/TabBarTest.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Example/Sources/AppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Example/Sources/AppView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Example/Sources/DesignSystemExampleView/DesignSystemExampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Example/Sources/DesignSystemExampleView/DesignSystemExampleView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Example/Sources/SubViews/BottleStorageList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Example/Sources/SubViews/BottleStorageList.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Example/Sources/SubViews/ClipListTest/ClipListContainerViewTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Example/Sources/SubViews/ClipListTest/ClipListContainerViewTest.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Example/Sources/SubViews/ClipListTest/ClipListViewTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Example/Sources/SubViews/ClipListTest/ClipListViewTest.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Example/Sources/SubViews/ETCTest/PageIndicatorTestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Example/Sources/SubViews/ETCTest/PageIndicatorTestView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Example/Sources/SubViews/LaundaryGothicsStyleTextTestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Example/Sources/SubViews/LaundaryGothicsStyleTextTestView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Example/Sources/SubViews/LetterCardTest/LetterCardTestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Example/Sources/SubViews/LetterCardTest/LetterCardTestView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Example/Sources/SubViews/LinesTextFieldTest/IntroductionTextFieldTestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Example/Sources/SubViews/LinesTextFieldTest/IntroductionTextFieldTestView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Example/Sources/SubViews/LinesTextFieldTest/LetterTextFieldTestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Example/Sources/SubViews/LinesTextFieldTest/LetterTextFieldTestView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Example/Sources/SubViews/ListTest/ListTestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Example/Sources/SubViews/ListTest/ListTestView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Example/Sources/SubViews/OutlinedStyleButtonTest/OutlinedStyleButtonTestItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Example/Sources/SubViews/OutlinedStyleButtonTest/OutlinedStyleButtonTestItem.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Example/Sources/SubViews/OutlinedStyleButtonTest/OutlinedStyleButtonTestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Example/Sources/SubViews/OutlinedStyleButtonTest/OutlinedStyleButtonTestView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Example/Sources/SubViews/OutlinedStyleButtonTest/OutlinedStyleToggleButtonTestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Example/Sources/SubViews/OutlinedStyleButtonTest/OutlinedStyleToggleButtonTestView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Example/Sources/SubViews/RobotoStyleTextTestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Example/Sources/SubViews/RobotoStyleTextTestView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Example/Sources/SubViews/SolidButtonTest/SolidButtonTestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Example/Sources/SubViews/SolidButtonTest/SolidButtonTestView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Example/Sources/SubViews/StopCardTest/StopCardTestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Example/Sources/SubViews/StopCardTest/StopCardTestView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Example/Sources/SubViews/ToastTestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Example/Sources/SubViews/ToastTestView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Example/Sources/SubViews/UserProfileTest/UserProfileTestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Example/Sources/SubViews/UserProfileTest/UserProfileTestView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Example/Sources/SubViews/WantedSansStyleTextTestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Example/Sources/SubViews/WantedSansStyleTextTestView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Black/Black100.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Black/Black100.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Black/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Black/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/ETC/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/ETC/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/ETC/Kakao.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/ETC/Kakao.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Gradient/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Gradient/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Gradient/Gradient.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Gradient/Gradient.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Neutral/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Neutral/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Neutral/Neutral100.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Neutral/Neutral100.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Neutral/Neutral200.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Neutral/Neutral200.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Neutral/Neutral300.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Neutral/Neutral300.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Neutral/Neutral400.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Neutral/Neutral400.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Neutral/Neutral500.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Neutral/Neutral500.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Neutral/Neutral600.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Neutral/Neutral600.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Neutral/Neutral700.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Neutral/Neutral700.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Neutral/Neutral800.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Neutral/Neutral800.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Neutral/Neutral900.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Neutral/Neutral900.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/PrimaryPurple/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/PrimaryPurple/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/PrimaryPurple/PrimaryPurple100.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/PrimaryPurple/PrimaryPurple100.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/PrimaryPurple/PrimaryPurple200.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/PrimaryPurple/PrimaryPurple200.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/PrimaryPurple/PrimaryPurple300.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/PrimaryPurple/PrimaryPurple300.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/PrimaryPurple/PrimaryPurple400.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/PrimaryPurple/PrimaryPurple400.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/PrimaryPurple/PrimaryPurple500.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/PrimaryPurple/PrimaryPurple500.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Red/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Red/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Red/Red.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/Red/Red.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/White/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/White/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/White/White100.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Colors.xcassets/SementicColor/White/White100.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Font/LaundryGothic/LaundryGothicOTF-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Font/LaundryGothic/LaundryGothicOTF-Bold.otf -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Font/LaundryGothic/LaundryGothicOTF-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Font/LaundryGothic/LaundryGothicOTF-Regular.otf -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Font/Roboto/Roboto-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Font/Roboto/Roboto-Medium.otf -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Font/WantedSans/WantedSans-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Font/WantedSans/WantedSans-Black.otf -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Font/WantedSans/WantedSans-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Font/WantedSans/WantedSans-Bold.otf -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Font/WantedSans/WantedSans-ExtraBlack.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Font/WantedSans/WantedSans-ExtraBlack.otf -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Font/WantedSans/WantedSans-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Font/WantedSans/WantedSans-ExtraBold.otf -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Font/WantedSans/WantedSans-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Font/WantedSans/WantedSans-Medium.otf -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Font/WantedSans/WantedSans-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Font/WantedSans/WantedSans-Regular.otf -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Font/WantedSans/WantedSans-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Font/WantedSans/WantedSans-SemiBold.otf -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_appleLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_appleLogo.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_appleLogo.imageset/icon_appleLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_appleLogo.imageset/icon_appleLogo.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_arrow_left.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_arrow_left.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_arrow_left.imageset/icon_arrow_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_arrow_left.imageset/icon_arrow_left.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_bottleStorage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_bottleStorage.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_bottleStorage.imageset/icon_bottleStorage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_bottleStorage.imageset/icon_bottleStorage.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_clearDelete.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_clearDelete.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_clearDelete.imageset/icon_clearDelete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_clearDelete.imageset/icon_clearDelete.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_delete.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_delete.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_delete.imageset/icon_delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_delete.imageset/icon_delete.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_down.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_down.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_down.imageset/icon_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_down.imageset/icon_down.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_heart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_heart.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_heart.imageset/icon_heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_heart.imageset/icon_heart.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_kakaoLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_kakaoLogo.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_kakaoLogo.imageset/icon_kakaoLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_kakaoLogo.imageset/icon_kakaoLogo.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_myPage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_myPage.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_myPage.imageset/icon_myPage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_myPage.imageset/icon_myPage.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_plus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_plus.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_plus.imageset/icon_plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_plus.imageset/icon_plus.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_right.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_right.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_right.imageset/icon_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_right.imageset/icon_right.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_sandBeach.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_sandBeach.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_sandBeach.imageset/icon_sandBeach.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_sandBeach.imageset/icon_sandBeach.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_share.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_share.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_share.imageset/icon_share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_share.imageset/icon_share.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_siren.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_siren.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_siren.imageset/icon_siren.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_siren.imageset/icon_siren.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_talk.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_talk.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_talk.imageset/icon_talk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_talk.imageset/icon_talk.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_up.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_up.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_up.imageset/icon_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_up.imageset/icon_up.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_verticalLine.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_verticalLine.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_verticalLine.imageset/icon_verticalLine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_verticalLine.imageset/icon_verticalLine.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_warning.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_warning.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_warning.imageset/icon_warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/icon/icon_warning.imageset/icon_warning.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_basket.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_basket.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_basket.imageset/illustraition_basket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_basket.imageset/illustraition_basket.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_bottle1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_bottle1.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_bottle1.imageset/illustraition_bottle1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_bottle1.imageset/illustraition_bottle1.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_bottle2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_bottle2.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_bottle2.imageset/illustraition_bottle2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_bottle2.imageset/illustraition_bottle2.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_bottleArrivalPhone.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_bottleArrivalPhone.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_bottleArrivalPhone.imageset/illustraition_bottleArrivalPhone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_bottleArrivalPhone.imageset/illustraition_bottleArrivalPhone.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_boy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_boy.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_boy.imageset/illustraition_boy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_boy.imageset/illustraition_boy.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_firstPingPong.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_firstPingPong.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_firstPingPong.imageset/illustraition_firstPingPong.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_firstPingPong.imageset/illustraition_firstPingPong.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_girl.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_girl.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_girl.imageset/illustraition_girl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_girl.imageset/illustraition_girl.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_islandEmptyBottle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_islandEmptyBottle.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_islandEmptyBottle.imageset/illustraition_islandEmptyBottle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_islandEmptyBottle.imageset/illustraition_islandEmptyBottle.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_islandHasBottle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_islandHasBottle.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_islandHasBottle.imageset/illustraition_islandHasBottle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_islandHasBottle.imageset/illustraition_islandHasBottle.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_loginBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_loginBackground.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_loginBackground.imageset/illustraition_loginBackground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_loginBackground.imageset/illustraition_loginBackground.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_logo.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_logo.imageset/illustraition_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_logo.imageset/illustraition_logo.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_loudspeaker.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_loudspeaker.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_loudspeaker.imageset/illustraition_loudspeaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_loudspeaker.imageset/illustraition_loudspeaker.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_no.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_no.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_no.imageset/illustraition_no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_no.imageset/illustraition_no.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_phone.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_phone.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_phone.imageset/illustraition_phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_phone.imageset/illustraition_phone.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_photoShare.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_photoShare.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_photoShare.imageset/illustraition_photoShare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_photoShare.imageset/illustraition_photoShare.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_secondPingPong.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_secondPingPong.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_secondPingPong.imageset/illustraition_secondPingPong.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_secondPingPong.imageset/illustraition_secondPingPong.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_telescope.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_telescope.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_telescope.imageset/illustraition_telescope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_telescope.imageset/illustraition_telescope.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_whiteLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_whiteLogo.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_whiteLogo.imageset/illustraition_whiteLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_whiteLogo.imageset/illustraition_whiteLogo.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_yes.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_yes.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_yes.imageset/illustraition_yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustraition_yes.imageset/illustraition_yes.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustration_sandBeachBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustration_sandBeachBackground.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustration_sandBeachBackground.imageset/illustration_sandBeachBackground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/illustration/illustration_sandBeachBackground.imageset/illustration_sandBeachBackground.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/image/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/image/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/image/image_splash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/image/image_splash.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Images.xcassets/image/image_splash.imageset/icon_splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Images.xcassets/image/image_splash.imageset/icon_splash.svg -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Lotties.xcassets/Bottle_loading_ellipse.dataset/Bottle_loading_ellipse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Lotties.xcassets/Bottle_loading_ellipse.dataset/Bottle_loading_ellipse.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Lotties.xcassets/Bottle_loading_ellipse.dataset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Lotties.xcassets/Bottle_loading_ellipse.dataset/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Resources/Lotties.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Resources/Lotties.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Color/BottleColorSystem+Neutral.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Color/BottleColorSystem+Neutral.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Color/BottleColorSystem+Primary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Color/BottleColorSystem+Primary.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Color/BottleColorSystem+Sub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Color/BottleColorSystem+Sub.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Color/Color+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Color/Color+Extensions.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Color/Colorable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Color/Colorable.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Alert/BottleAlert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Alert/BottleAlert.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Alert/BottleAlertView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Alert/BottleAlertView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Button/ButtonStateType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Button/ButtonStateType.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Button/ButtonType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Button/ButtonType.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Button/OutlinedButton/OutlinedButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Button/OutlinedButton/OutlinedButtonStyle.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Button/OutlinedButton/OutlinedStyleButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Button/OutlinedButton/OutlinedStyleButton.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Button/SegmentControlButton/SegmentControlButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Button/SegmentControlButton/SegmentControlButton.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Button/SegmentControlButton/SegmentControlButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Button/SegmentControlButton/SegmentControlButtonStyle.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Button/SolidButton/SolidButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Button/SolidButton/SolidButton.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Button/SolidButton/SolidButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Button/SolidButton/SolidButtonStyle.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Card/ClipList/ChipListLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Card/ClipList/ChipListLayout.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Card/ClipList/ClipItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Card/ClipList/ClipItem.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Card/ClipList/ClipListContainerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Card/ClipList/ClipListContainerView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Card/ClipList/ClipListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Card/ClipList/ClipListView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Card/Letter/LettetCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Card/Letter/LettetCardView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Card/PingPong/PingPongBubble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Card/PingPong/PingPongBubble.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Card/PingPong/PingPongContainerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Card/PingPong/PingPongContainerView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Card/PingPong/PingPongUserView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Card/PingPong/PingPongUserView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Card/PingPong/QuestionStateType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Card/PingPong/QuestionStateType.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Card/Stop/StopCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Card/Stop/StopCardView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Card/UserProfile/UserProfileView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Card/UserProfile/UserProfileView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/ETC/ImagePickerButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/ETC/ImagePickerButton.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/ETC/PageIndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/ETC/PageIndicatorView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/ETC/TitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/ETC/TitleView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/ImageView/BlurImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/ImageView/BlurImageView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/ImageView/BottleImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/ImageView/BottleImageView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/ImageView/ImageViewType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/ImageView/ImageViewType.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/ImageView/LocalImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/ImageView/LocalImageView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/ImageView/RemoteImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/ImageView/RemoteImageView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/List/ArrowListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/List/ArrowListView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/List/ButtonListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/List/ButtonListView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/List/ListContainerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/List/ListContainerView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/List/TextListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/List/TextListView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/List/ToggleListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/List/ToggleListView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/ListItem/BottleStorageItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/ListItem/BottleStorageItem.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Popup/CountLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Popup/CountLabel.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Popup/PopupType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Popup/PopupType.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Popup/PopupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Popup/PopupView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Popup/TriangleShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Popup/TriangleShape.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Popup/TriangleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Popup/TriangleView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/TextField/LineTextField/LineTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/TextField/LineTextField/LineTextField.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/TextField/LinesTextField/LinesTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/TextField/LinesTextField/LinesTextField.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/TextField/LinesTextField/TextFieldState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/TextField/LinesTextField/TextFieldState.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Toast/PassthroughWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Toast/PassthroughWindow.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Toast/RootView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Toast/RootView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Toast/ToastGroupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Toast/ToastGroupView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Toast/ToastItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Toast/ToastItem.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Toast/ToastItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Toast/ToastItemView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Toast/ToastManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Toast/ToastManager.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Components/Toggle/BottleToggle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Components/Toggle/BottleToggle.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Constants/BottleConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Constants/BottleConstants.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Extension/PreferenceKey/CGSizePreferenceKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Extension/PreferenceKey/CGSizePreferenceKey.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Extension/Text+Font.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Extension/Text+Font.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Extension/UIImage+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Extension/UIImage+Extensions.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Extension/View+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Extension/View+Extensions.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Extension/View+Font.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Extension/View+Font.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Extension/View+RoundedCorner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Extension/View+RoundedCorner.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Font/BottleFontSystem+LaundryGothic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Font/BottleFontSystem+LaundryGothic.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Font/BottleFontSystem+Rotobo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Font/BottleFontSystem+Rotobo.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Font/BottleFontSystem+WantedSans.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Font/BottleFontSystem+WantedSans.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Font/Font+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Font/Font+Extensions.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Font/Fontable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Font/Fontable.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Image/BottleImageSystem+Icon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Image/BottleImageSystem+Icon.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Image/BottleImageSystem+Illustraition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Image/BottleImageSystem+Illustraition.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Image/Image+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Image/Image+Extensions.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Image/Imageable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Image/Imageable.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Modifiers/AsButtonModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Modifiers/AsButtonModifier.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Modifiers/AsDebounceButtonModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Modifiers/AsDebounceButtonModifier.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Modifiers/AsThrottleButtonModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Modifiers/AsThrottleButtonModifier.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Modifiers/EndEditingModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Modifiers/EndEditingModifier.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Modifiers/NavigationBarModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Modifiers/NavigationBarModifier.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Modifiers/OnLoadModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Modifiers/OnLoadModifier.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Modifiers/OnLoadTaskModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Modifiers/OnLoadTaskModifier.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Padding/BottlePaddingType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Padding/BottlePaddingType.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Padding/View+Padding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Padding/View+Padding.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/ProgressIndicator/LoadingIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/ProgressIndicator/LoadingIndicator.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Radius/BottleRadiusType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Radius/BottleRadiusType.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/ScreenShotPrevent/ScreenShotPreventView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/ScreenShotPrevent/ScreenShotPreventView.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Spacing/HStack+Spacing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Spacing/HStack+Spacing.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Spacing/Spacable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Spacing/Spacable.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Spacing/Spacer+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Spacing/Spacer+Extensions.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Spacing/VStack+Spacing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Spacing/VStack+Spacing.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Text/CustomStyleText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Text/CustomStyleText.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Text/LaundryGothicStyleText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Text/LaundryGothicStyleText.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Text/RobotoStyleText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Text/RobotoStyleText.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Text/WantedSansStyleText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Text/WantedSansStyleText.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Token/ColorToken+Background.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Token/ColorToken+Background.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Token/ColorToken+Border.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Token/ColorToken+Border.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Token/ColorToken+Brand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Token/ColorToken+Brand.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Token/ColorToken+Container.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Token/ColorToken+Container.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Token/ColorToken+IconToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Token/ColorToken+IconToken.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Token/ColorToken+OnContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Token/ColorToken+OnContainer.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Token/ColorToken+TextToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Token/ColorToken+TextToken.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystem/Sources/Token/ColorToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystem/Sources/Token/ColorToken.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystemThirdPartyLib/Interface/Sources/DesignSystemThirdPartyLibInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystemThirdPartyLib/Interface/Sources/DesignSystemThirdPartyLibInterface.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystemThirdPartyLib/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/DesignSystemThirdPartyLib/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/DesignSystemThirdPartyLib/Sources/Source.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Shared/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/ThirdPartyLib/Interface/Sources/ThirdPartyLibInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/ThirdPartyLib/Interface/Sources/ThirdPartyLibInterface.swift -------------------------------------------------------------------------------- /Projects/Shared/ThirdPartyLib/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/ThirdPartyLib/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/ThirdPartyLib/Sources/Source.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Projects/Shared/Util/Interface/Sources/Date+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/Util/Interface/Sources/Date+Extensions.swift -------------------------------------------------------------------------------- /Projects/Shared/Util/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Projects/Shared/Util/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/Util/Sources/Source.swift: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/GenerateModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Scripts/GenerateModule.swift -------------------------------------------------------------------------------- /Tuist/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Tuist/Config.swift -------------------------------------------------------------------------------- /Tuist/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Tuist/Package.resolved -------------------------------------------------------------------------------- /Tuist/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Tuist/Package.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/InfoPlist+Templates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Tuist/ProjectDescriptionHelpers/InfoPlist+Templates.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/Project+Templates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Tuist/ProjectDescriptionHelpers/Project+Templates.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/Scheme+Templates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Tuist/ProjectDescriptionHelpers/Scheme+Templates.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/Settings+Templates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Tuist/ProjectDescriptionHelpers/Settings+Templates.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/SoureceFileList+Templates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Tuist/ProjectDescriptionHelpers/SoureceFileList+Templates.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/Target+Templates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Tuist/ProjectDescriptionHelpers/Target+Templates.swift -------------------------------------------------------------------------------- /Tuist/ResourceSynthesizers/Lottie.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Tuist/ResourceSynthesizers/Lottie.stencil -------------------------------------------------------------------------------- /Tuist/Templates/Example/Example.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Tuist/Templates/Example/Example.swift -------------------------------------------------------------------------------- /Tuist/Templates/Example/ExampleSources.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Tuist/Templates/Example/ExampleSources.stencil -------------------------------------------------------------------------------- /Tuist/Templates/Interface/Interface.stencil: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | 3 | public protocol {{ name }}Interface { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /Tuist/Templates/Interface/Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Tuist/Templates/Interface/Interface.swift -------------------------------------------------------------------------------- /Tuist/Templates/Module/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Tuist/Templates/Module/Module.swift -------------------------------------------------------------------------------- /Tuist/Templates/Module/Project.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Tuist/Templates/Module/Project.stencil -------------------------------------------------------------------------------- /Tuist/Templates/Module/Sources.stencil: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Tuist/Templates/Sources/Sources.stencil: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Tuist/Templates/Sources/Sources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Tuist/Templates/Sources/Sources.swift -------------------------------------------------------------------------------- /Tuist/Templates/Testing/Testing.stencil: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Tuist/Templates/Testing/Testing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Tuist/Templates/Testing/Testing.swift -------------------------------------------------------------------------------- /Tuist/Templates/Tests/Tests.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Tuist/Templates/Tests/Tests.stencil -------------------------------------------------------------------------------- /Tuist/Templates/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Tuist/Templates/Tests/Tests.swift -------------------------------------------------------------------------------- /Workspace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/Workspace.swift -------------------------------------------------------------------------------- /graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexters/Bottles_iOS/HEAD/graph.png --------------------------------------------------------------------------------