├── .gitattributes ├── .gitignore ├── WhatsAppMAUI.sln └── WhatsAppMAUI ├── App.xaml ├── App.xaml.cs ├── AppShell.xaml ├── AppShell.xaml.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── MauiProgram.cs ├── Models └── ChatModel.cs ├── Pages ├── CallsPage.xaml ├── CallsPage.xaml.cs ├── ChatsPage.xaml ├── ChatsPage.xaml.cs ├── StatusPage.xaml └── StatusPage.xaml.cs ├── Platforms ├── Android │ ├── AndroidManifest.xml │ ├── MainActivity.cs │ ├── MainApplication.cs │ └── Resources │ │ └── values │ │ └── colors.xml ├── MacCatalyst │ ├── AppDelegate.cs │ ├── Info.plist │ └── Program.cs ├── Tizen │ ├── Main.cs │ └── tizen-manifest.xml ├── Windows │ ├── App.xaml │ ├── App.xaml.cs │ ├── Package.appxmanifest │ └── app.manifest └── iOS │ ├── AppDelegate.cs │ ├── Info.plist │ └── Program.cs ├── Properties └── launchSettings.json ├── Resources ├── AppIcon │ ├── appicon.svg │ └── appiconfg.svg ├── Fonts │ ├── OpenSans-Regular.ttf │ └── OpenSans-Semibold.ttf ├── Images │ ├── avatar.svg │ ├── avatar_group.svg │ └── dotnet_bot.svg ├── Raw │ └── AboutAssets.txt ├── Splash │ └── splash.svg └── Styles │ ├── Colors.xaml │ └── Styles.xaml └── WhatsAppMAUI.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/.gitignore -------------------------------------------------------------------------------- /WhatsAppMAUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI.sln -------------------------------------------------------------------------------- /WhatsAppMAUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/App.xaml -------------------------------------------------------------------------------- /WhatsAppMAUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/App.xaml.cs -------------------------------------------------------------------------------- /WhatsAppMAUI/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/AppShell.xaml -------------------------------------------------------------------------------- /WhatsAppMAUI/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/AppShell.xaml.cs -------------------------------------------------------------------------------- /WhatsAppMAUI/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/MainPage.xaml -------------------------------------------------------------------------------- /WhatsAppMAUI/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/MainPage.xaml.cs -------------------------------------------------------------------------------- /WhatsAppMAUI/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/MauiProgram.cs -------------------------------------------------------------------------------- /WhatsAppMAUI/Models/ChatModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Models/ChatModel.cs -------------------------------------------------------------------------------- /WhatsAppMAUI/Pages/CallsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Pages/CallsPage.xaml -------------------------------------------------------------------------------- /WhatsAppMAUI/Pages/CallsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Pages/CallsPage.xaml.cs -------------------------------------------------------------------------------- /WhatsAppMAUI/Pages/ChatsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Pages/ChatsPage.xaml -------------------------------------------------------------------------------- /WhatsAppMAUI/Pages/ChatsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Pages/ChatsPage.xaml.cs -------------------------------------------------------------------------------- /WhatsAppMAUI/Pages/StatusPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Pages/StatusPage.xaml -------------------------------------------------------------------------------- /WhatsAppMAUI/Pages/StatusPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Pages/StatusPage.xaml.cs -------------------------------------------------------------------------------- /WhatsAppMAUI/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /WhatsAppMAUI/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /WhatsAppMAUI/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /WhatsAppMAUI/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /WhatsAppMAUI/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /WhatsAppMAUI/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /WhatsAppMAUI/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /WhatsAppMAUI/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /WhatsAppMAUI/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /WhatsAppMAUI/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /WhatsAppMAUI/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /WhatsAppMAUI/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /WhatsAppMAUI/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /WhatsAppMAUI/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /WhatsAppMAUI/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /WhatsAppMAUI/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /WhatsAppMAUI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Properties/launchSettings.json -------------------------------------------------------------------------------- /WhatsAppMAUI/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /WhatsAppMAUI/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /WhatsAppMAUI/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /WhatsAppMAUI/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /WhatsAppMAUI/Resources/Images/avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Resources/Images/avatar.svg -------------------------------------------------------------------------------- /WhatsAppMAUI/Resources/Images/avatar_group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Resources/Images/avatar_group.svg -------------------------------------------------------------------------------- /WhatsAppMAUI/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /WhatsAppMAUI/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /WhatsAppMAUI/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /WhatsAppMAUI/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /WhatsAppMAUI/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /WhatsAppMAUI/WhatsAppMAUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abhayprince/WhatsAppMAUI/HEAD/WhatsAppMAUI/WhatsAppMAUI.csproj --------------------------------------------------------------------------------