├── .gitattributes ├── .gitignore ├── MauiAppDI ├── MauiAppDI.Shared │ ├── IToast.cs │ ├── MauiAppDI.Shared.csproj │ └── Platforms │ │ ├── Android │ │ └── Toaster.cs │ │ ├── MacCatalyst │ │ └── Toaster.cs │ │ ├── Tizen │ │ └── PlatformClass1.cs │ │ ├── Windows │ │ └── Toaster.cs │ │ └── iOS │ │ └── Toaster.cs ├── MauiAppDI.sln └── MauiAppDI │ ├── AnotherPage.xaml │ ├── AnotherPage.xaml.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── DetailPage.xaml │ ├── DetailPage.xaml.cs │ ├── Helpers │ ├── MyBluetoothPermission.cs │ └── ServiceProvider.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MauiAppDI.csproj │ ├── MauiProgram.cs │ ├── Model │ └── Monkey.cs │ ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ └── Resources │ │ │ └── values │ │ │ └── colors.xml │ ├── MacCatalyst │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs │ ├── Windows │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Package.appxmanifest │ │ └── app.manifest │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Resources │ ├── Fonts │ │ ├── OpenSans-Regular.ttf │ │ └── OpenSans-Semibold.ttf │ ├── Images │ │ └── dotnet_bot.svg │ ├── Raw │ │ └── AboutAssets.txt │ ├── Styles.xaml │ ├── appicon.svg │ └── appiconfg.svg │ └── ViewModel │ ├── DetailViewModel.cs │ └── MainViewModel.cs └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/.gitignore -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI.Shared/IToast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI.Shared/IToast.cs -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI.Shared/MauiAppDI.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI.Shared/MauiAppDI.Shared.csproj -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI.Shared/Platforms/Android/Toaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI.Shared/Platforms/Android/Toaster.cs -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI.Shared/Platforms/MacCatalyst/Toaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI.Shared/Platforms/MacCatalyst/Toaster.cs -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI.Shared/Platforms/Tizen/PlatformClass1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI.Shared/Platforms/Tizen/PlatformClass1.cs -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI.Shared/Platforms/Windows/Toaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI.Shared/Platforms/Windows/Toaster.cs -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI.Shared/Platforms/iOS/Toaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI.Shared/Platforms/iOS/Toaster.cs -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI.sln -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/AnotherPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/AnotherPage.xaml -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/AnotherPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/AnotherPage.xaml.cs -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/App.xaml -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/App.xaml.cs -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/AppShell.xaml -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/AppShell.xaml.cs -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/DetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/DetailPage.xaml -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/DetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/DetailPage.xaml.cs -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Helpers/MyBluetoothPermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Helpers/MyBluetoothPermission.cs -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Helpers/ServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Helpers/ServiceProvider.cs -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/MainPage.xaml -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/MainPage.xaml.cs -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/MauiAppDI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/MauiAppDI.csproj -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/MauiProgram.cs -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Model/Monkey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Model/Monkey.cs -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Properties/launchSettings.json -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Resources/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Resources/Styles.xaml -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Resources/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Resources/appicon.svg -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/Resources/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/Resources/appiconfg.svg -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/ViewModel/DetailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/ViewModel/DetailViewModel.cs -------------------------------------------------------------------------------- /MauiAppDI/MauiAppDI/ViewModel/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/MauiAppDI/MauiAppDI/ViewModel/MainViewModel.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/MauiApp-DI/HEAD/README.md --------------------------------------------------------------------------------