├── .gitattributes ├── .gitignore ├── App.xaml ├── App.xaml.cs ├── AppShell.xaml ├── AppShell.xaml.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── MauiProgram.cs ├── Models └── StudentModel.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 │ ├── clear.png │ ├── dotnet_bot.svg │ ├── search.png │ └── user.png ├── Raw │ └── AboutAssets.txt ├── Splash │ └── splash.svg └── Styles │ ├── Colors.xaml │ └── Styles.xaml ├── SQLiteDemo.csproj ├── SQLiteDemo.sln ├── SearchHandlers └── StudentSearchHandler.cs ├── Services ├── IStudentService.cs └── StudentService.cs ├── ViewModels ├── AddUpdateStudentDetailViewModel.cs └── StudentListPageViewModel.cs └── Views ├── AddUpdateStudentDetail.xaml ├── AddUpdateStudentDetail.xaml.cs ├── StudentListPage.xaml └── StudentListPage.xaml.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/.gitignore -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/App.xaml -------------------------------------------------------------------------------- /App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/App.xaml.cs -------------------------------------------------------------------------------- /AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/AppShell.xaml -------------------------------------------------------------------------------- /AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/AppShell.xaml.cs -------------------------------------------------------------------------------- /MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/MainPage.xaml -------------------------------------------------------------------------------- /MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/MainPage.xaml.cs -------------------------------------------------------------------------------- /MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/MauiProgram.cs -------------------------------------------------------------------------------- /Models/StudentModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Models/StudentModel.cs -------------------------------------------------------------------------------- /Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /Resources/Images/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Resources/Images/clear.png -------------------------------------------------------------------------------- /Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /Resources/Images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Resources/Images/search.png -------------------------------------------------------------------------------- /Resources/Images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Resources/Images/user.png -------------------------------------------------------------------------------- /Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /SQLiteDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/SQLiteDemo.csproj -------------------------------------------------------------------------------- /SQLiteDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/SQLiteDemo.sln -------------------------------------------------------------------------------- /SearchHandlers/StudentSearchHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/SearchHandlers/StudentSearchHandler.cs -------------------------------------------------------------------------------- /Services/IStudentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Services/IStudentService.cs -------------------------------------------------------------------------------- /Services/StudentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Services/StudentService.cs -------------------------------------------------------------------------------- /ViewModels/AddUpdateStudentDetailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/ViewModels/AddUpdateStudentDetailViewModel.cs -------------------------------------------------------------------------------- /ViewModels/StudentListPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/ViewModels/StudentListPageViewModel.cs -------------------------------------------------------------------------------- /Views/AddUpdateStudentDetail.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Views/AddUpdateStudentDetail.xaml -------------------------------------------------------------------------------- /Views/AddUpdateStudentDetail.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Views/AddUpdateStudentDetail.xaml.cs -------------------------------------------------------------------------------- /Views/StudentListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Views/StudentListPage.xaml -------------------------------------------------------------------------------- /Views/StudentListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/SQLiteDemoMAUI/HEAD/Views/StudentListPage.xaml.cs --------------------------------------------------------------------------------