├── ChatAppSwiftUI.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcuserdata │ │ └── omarthamri.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── omarthamri.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── ChatAppSwiftUI ├── App │ └── ChatAppSwiftUIApp.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Colors │ │ ├── Contents.json │ │ └── Peach.colorset │ │ │ └── Contents.json │ ├── Contents.json │ └── Images │ │ ├── Contents.json │ │ ├── background_image.imageset │ │ ├── Contents.json │ │ └── bg.jpeg │ │ ├── elizabeth.imageset │ │ ├── Contents.json │ │ └── elizabeth.jpeg │ │ ├── logo.imageset │ │ ├── Contents.json │ │ └── image.psd.png │ │ ├── voice.imageset │ │ ├── Contents.json │ │ └── voice.png │ │ └── welcome_image.imageset │ │ ├── Contents.json │ │ └── welcome_image.png ├── ChatAppSwiftUI.entitlements ├── Core │ ├── Authentification │ │ ├── View │ │ │ ├── FloatingTextFieldsView.swift │ │ │ ├── LoginView.swift │ │ │ ├── RegistrationView.swift │ │ │ └── WelcomeView.swift │ │ └── ViewModel │ │ │ ├── LoginViewModel.swift │ │ │ └── RegistrationViewModel.swift │ ├── Chat │ │ ├── View │ │ │ ├── Audio.swift │ │ │ ├── ChatBubble.swift │ │ │ ├── ChatMessageCell.swift │ │ │ └── ChatView.swift │ │ └── ViewModel │ │ │ └── ChatViewModel.swift │ ├── Components │ │ ├── CircularProfileImageView.swift │ │ └── EmojiTextField.swift │ ├── Inbox │ │ ├── View │ │ │ ├── InboxRowView.swift │ │ │ └── InboxView.swift │ │ └── ViewModel │ │ │ └── InboxViewModel.swift │ ├── NewMessage │ │ ├── ViewModels │ │ │ └── NewMessageViewModel.swift │ │ └── Views │ │ │ └── NewMessageView.swift │ ├── Profile │ │ ├── View │ │ │ └── ProfileView.swift │ │ └── ViewModel │ │ │ └── ProfileViewModel.swift │ ├── Root │ │ ├── View │ │ │ └── RootView.swift │ │ └── ViewModel │ │ │ └── RootViewModel.swift │ ├── Settings │ │ ├── View │ │ │ └── SettingsView.swift │ │ └── viewModel │ │ │ └── SettingsViewModel.swift │ └── Tabbar │ │ └── View │ │ └── MainTabbarView.swift ├── Model │ ├── Message.swift │ ├── SettingsOptions.swift │ └── User.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Routing │ └── Route.swift ├── Service │ ├── AudioUploader.swift │ ├── AuthService.swift │ ├── ChatService.swift │ ├── ImageUploader.swift │ ├── InboxService.swift │ ├── UserService.swift │ └── VideoUploader.swift └── Utils │ ├── Constants.swift │ ├── Extensions │ ├── Date.swift │ └── View.swift │ └── Plist │ ├── GoogleService-Info.plist │ └── Info.plist ├── ChatAppSwiftUITests └── ChatAppSwiftUITests.swift ├── ChatAppSwiftUIUITests ├── ChatAppSwiftUIUITests.swift └── ChatAppSwiftUIUITestsLaunchTests.swift └── README.md /ChatAppSwiftUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ChatAppSwiftUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ChatAppSwiftUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ChatAppSwiftUI.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /ChatAppSwiftUI.xcodeproj/project.xcworkspace/xcuserdata/omarthamri.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI.xcodeproj/project.xcworkspace/xcuserdata/omarthamri.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ChatAppSwiftUI.xcodeproj/xcuserdata/omarthamri.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI.xcodeproj/xcuserdata/omarthamri.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ChatAppSwiftUI/App/ChatAppSwiftUIApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/App/ChatAppSwiftUIApp.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /ChatAppSwiftUI/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ChatAppSwiftUI/Assets.xcassets/Colors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Assets.xcassets/Colors/Contents.json -------------------------------------------------------------------------------- /ChatAppSwiftUI/Assets.xcassets/Colors/Peach.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Assets.xcassets/Colors/Peach.colorset/Contents.json -------------------------------------------------------------------------------- /ChatAppSwiftUI/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ChatAppSwiftUI/Assets.xcassets/Images/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Assets.xcassets/Images/Contents.json -------------------------------------------------------------------------------- /ChatAppSwiftUI/Assets.xcassets/Images/background_image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Assets.xcassets/Images/background_image.imageset/Contents.json -------------------------------------------------------------------------------- /ChatAppSwiftUI/Assets.xcassets/Images/background_image.imageset/bg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Assets.xcassets/Images/background_image.imageset/bg.jpeg -------------------------------------------------------------------------------- /ChatAppSwiftUI/Assets.xcassets/Images/elizabeth.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Assets.xcassets/Images/elizabeth.imageset/Contents.json -------------------------------------------------------------------------------- /ChatAppSwiftUI/Assets.xcassets/Images/elizabeth.imageset/elizabeth.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Assets.xcassets/Images/elizabeth.imageset/elizabeth.jpeg -------------------------------------------------------------------------------- /ChatAppSwiftUI/Assets.xcassets/Images/logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Assets.xcassets/Images/logo.imageset/Contents.json -------------------------------------------------------------------------------- /ChatAppSwiftUI/Assets.xcassets/Images/logo.imageset/image.psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Assets.xcassets/Images/logo.imageset/image.psd.png -------------------------------------------------------------------------------- /ChatAppSwiftUI/Assets.xcassets/Images/voice.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Assets.xcassets/Images/voice.imageset/Contents.json -------------------------------------------------------------------------------- /ChatAppSwiftUI/Assets.xcassets/Images/voice.imageset/voice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Assets.xcassets/Images/voice.imageset/voice.png -------------------------------------------------------------------------------- /ChatAppSwiftUI/Assets.xcassets/Images/welcome_image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Assets.xcassets/Images/welcome_image.imageset/Contents.json -------------------------------------------------------------------------------- /ChatAppSwiftUI/Assets.xcassets/Images/welcome_image.imageset/welcome_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Assets.xcassets/Images/welcome_image.imageset/welcome_image.png -------------------------------------------------------------------------------- /ChatAppSwiftUI/ChatAppSwiftUI.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/ChatAppSwiftUI.entitlements -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/Authentification/View/FloatingTextFieldsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/Authentification/View/FloatingTextFieldsView.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/Authentification/View/LoginView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/Authentification/View/LoginView.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/Authentification/View/RegistrationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/Authentification/View/RegistrationView.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/Authentification/View/WelcomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/Authentification/View/WelcomeView.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/Authentification/ViewModel/LoginViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/Authentification/ViewModel/LoginViewModel.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/Authentification/ViewModel/RegistrationViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/Authentification/ViewModel/RegistrationViewModel.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/Chat/View/Audio.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/Chat/View/Audio.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/Chat/View/ChatBubble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/Chat/View/ChatBubble.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/Chat/View/ChatMessageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/Chat/View/ChatMessageCell.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/Chat/View/ChatView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/Chat/View/ChatView.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/Chat/ViewModel/ChatViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/Chat/ViewModel/ChatViewModel.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/Components/CircularProfileImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/Components/CircularProfileImageView.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/Components/EmojiTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/Components/EmojiTextField.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/Inbox/View/InboxRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/Inbox/View/InboxRowView.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/Inbox/View/InboxView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/Inbox/View/InboxView.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/Inbox/ViewModel/InboxViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/Inbox/ViewModel/InboxViewModel.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/NewMessage/ViewModels/NewMessageViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/NewMessage/ViewModels/NewMessageViewModel.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/NewMessage/Views/NewMessageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/NewMessage/Views/NewMessageView.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/Profile/View/ProfileView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/Profile/View/ProfileView.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/Profile/ViewModel/ProfileViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/Profile/ViewModel/ProfileViewModel.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/Root/View/RootView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/Root/View/RootView.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/Root/ViewModel/RootViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/Root/ViewModel/RootViewModel.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/Settings/View/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/Settings/View/SettingsView.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/Settings/viewModel/SettingsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/Settings/viewModel/SettingsViewModel.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Core/Tabbar/View/MainTabbarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Core/Tabbar/View/MainTabbarView.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Model/Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Model/Message.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Model/SettingsOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Model/SettingsOptions.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Model/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Model/User.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ChatAppSwiftUI/Routing/Route.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Routing/Route.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Service/AudioUploader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Service/AudioUploader.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Service/AuthService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Service/AuthService.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Service/ChatService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Service/ChatService.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Service/ImageUploader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Service/ImageUploader.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Service/InboxService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Service/InboxService.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Service/UserService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Service/UserService.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Service/VideoUploader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Service/VideoUploader.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Utils/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Utils/Constants.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Utils/Extensions/Date.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Utils/Extensions/Date.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Utils/Extensions/View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Utils/Extensions/View.swift -------------------------------------------------------------------------------- /ChatAppSwiftUI/Utils/Plist/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Utils/Plist/GoogleService-Info.plist -------------------------------------------------------------------------------- /ChatAppSwiftUI/Utils/Plist/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUI/Utils/Plist/Info.plist -------------------------------------------------------------------------------- /ChatAppSwiftUITests/ChatAppSwiftUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUITests/ChatAppSwiftUITests.swift -------------------------------------------------------------------------------- /ChatAppSwiftUIUITests/ChatAppSwiftUIUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUIUITests/ChatAppSwiftUIUITests.swift -------------------------------------------------------------------------------- /ChatAppSwiftUIUITests/ChatAppSwiftUIUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/ChatAppSwiftUIUITests/ChatAppSwiftUIUITestsLaunchTests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omarthamri/WhatsAPPClone-Swiftui/HEAD/README.md --------------------------------------------------------------------------------