TechdioApp is a powerful, cross-platform learning application built using .NET MAUI, offering students and tutors a seamless experience to connect, learn, and grow.
It’s not just an app — it’s a modern learning hub packed with features, elegant UI, and solid architecture.
✅ Firebase Authentication
Sign up or sign in securely with Firebase.
✅ Interactive Dashboard
A central place to explore courses, tutors, and user tools.
✅ Course Browsing
Explore detailed course catalogs with titles, categories, modules, tutor info, and pricing.
✅ Course Detail View
Access full details of each course before joining or enrolling.
✅ Tutor Profiles
Browse and get to know the tutors available in the system.
✅ Profile Management
View and edit user profile info from a dedicated screen.
✅ Custom Flyout Navigation
Smooth .NET MAUI Shell navigation with a custom FlyoutHeader.
✅ Modern UI & Animations
Includes animated modals like ComingSoonPopup, custom forms, and splash screen.
✅ Forms to Interact
- Hire a tutor
- Join a waitlist
- Request a custom course
✅ Offline Data Support
Lightweight LiteDB integration for embedded local storage.
✅ Raw File Support
Access and use raw text/data assets bundled in the app.
- .NET MAUI – Cross-platform UI
- C# & XAML – Application logic and UI
- MVVM Architecture – Using
CommunityToolkit.Mvvm - Firebase – For Auth and Data storage
- LiteDB – Embedded NoSQL database
- .NET SDK (latest supported for .NET MAUI)
- Visual Studio 2022+ with MAUI workload
git clone https://github.com/abm1119/TechdioApp.git
cd TechdioAppOpen the solution file in Visual Studio:
TechdioApp/TechdioApp.sln
Restore dependencies:
dotnet restoreEdit MauiProgram.cs to insert your Firebase credentials:
- API Key
- Auth Domain
- Database URL
Example:
options.ApiKey = "YOUR_API_KEY";
options.AuthDomain = "your-app.firebaseapp.com";
options.DatabaseUrl = "https://your-app.firebaseio.com";Choose a platform (Android, iOS, Windows) and start debugging with a device/emulator.
TechdioApp/
├── App.xaml / App.xaml.cs → Global styling and lifecycle
├── AppShell.xaml / AppShell.xaml.cs → Shell routing & Flyout menu
├── MauiProgram.cs → DI, services, Firebase config
├── TechdioApp.sln / TechdioApp.csproj → Project and solution files
├── Platforms/ → Platform-specific logic
│ └── Android/, iOS/, MacCatalyst/, Windows/, Tizen/
├── Resources/ → Fonts, Images, Splash, Raw
│ └── Raw/ → AboutAssets.txt
├── Controls/ → FlyoutHeader UI control
├── Dashboard/
│ ├── Pages/ → Home, Courses, Profile, Tutors
│ ├── Models/ → Course, Tutor, User
│ └── ViewModels/ → CoursePageVM, LoadingVM
├── Pages/ → Auth & Utility Pages
│ └── SignInView, SignUpView, About, Forms
├── Services/ → Firebase integration logic
│ └── FirebaseAuthService, FirebaseService
├── Models/ → MenuItemModel, UserProfile
└── Properties/ → launchSettings.json
The app uses Model-View-ViewModel (MVVM):
View ←→ ViewModel ←→ Services
(XAML UI) (Logic) (Data/Auth Layer)
📌 [You can add a diagram here if needed to visualize MVVM + Shell navigation]
⬇️ Download APK
Try it instantly on your Android device!
Pull requests are welcome! For major changes, please open an issue first to discuss what you'd like to change or improve.
Licensed under the Apache License 2.0.
See LICENSE.txt for details.
Made with ❤️ by Abdul Basit Memon (@abm1119)
