├── .gitignore ├── Images └── razorpay.png ├── README.md ├── RazorMauiApp.sln └── RazorMauiApp ├── App.xaml ├── App.xaml.cs ├── AppShell.xaml ├── AppShell.xaml.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── MauiProgram.cs ├── Platforms ├── Android │ ├── AndroidManifest.xml │ ├── MainActivity.cs │ ├── MainApplication.cs │ └── Resources │ │ └── values │ │ └── colors.xml ├── MacCatalyst │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── 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 ├── RazorMauiApp.csproj └── Resources ├── AppIcon ├── appicon.svg └── appiconfg.svg ├── Fonts ├── OpenSans-Regular.ttf └── OpenSans-Semibold.ttf ├── Images └── dotnet_bot.png ├── Raw └── AboutAssets.txt ├── Splash └── splash.svg └── Styles ├── Colors.xaml └── Styles.xaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/razorpay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/Images/razorpay.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/README.md -------------------------------------------------------------------------------- /RazorMauiApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp.sln -------------------------------------------------------------------------------- /RazorMauiApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/App.xaml -------------------------------------------------------------------------------- /RazorMauiApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/App.xaml.cs -------------------------------------------------------------------------------- /RazorMauiApp/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/AppShell.xaml -------------------------------------------------------------------------------- /RazorMauiApp/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/AppShell.xaml.cs -------------------------------------------------------------------------------- /RazorMauiApp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/MainPage.xaml -------------------------------------------------------------------------------- /RazorMauiApp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/MainPage.xaml.cs -------------------------------------------------------------------------------- /RazorMauiApp/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/MauiProgram.cs -------------------------------------------------------------------------------- /RazorMauiApp/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /RazorMauiApp/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /RazorMauiApp/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /RazorMauiApp/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /RazorMauiApp/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /RazorMauiApp/Platforms/MacCatalyst/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Platforms/MacCatalyst/Entitlements.plist -------------------------------------------------------------------------------- /RazorMauiApp/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /RazorMauiApp/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /RazorMauiApp/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /RazorMauiApp/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /RazorMauiApp/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /RazorMauiApp/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /RazorMauiApp/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /RazorMauiApp/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /RazorMauiApp/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /RazorMauiApp/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /RazorMauiApp/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /RazorMauiApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /RazorMauiApp/RazorMauiApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/RazorMauiApp.csproj -------------------------------------------------------------------------------- /RazorMauiApp/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /RazorMauiApp/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /RazorMauiApp/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /RazorMauiApp/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /RazorMauiApp/Resources/Images/dotnet_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Resources/Images/dotnet_bot.png -------------------------------------------------------------------------------- /RazorMauiApp/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /RazorMauiApp/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /RazorMauiApp/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /RazorMauiApp/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samirgcofficial/RazorPaymentMaui/HEAD/RazorMauiApp/Resources/Styles/Styles.xaml --------------------------------------------------------------------------------