EduLoan
WebFlutter Web · Python · Flask
eduloan.lkIntroduction
EduLoan is an education-finance platform that connects parents, students, and educational institutions with financial institutions. Instead of approaching lenders one at a time, a family completes a single online application and reaches multiple financial institutions at once.
I built the Flutter app that fronts it, backed by a Python/Flask API.
How it works
- A family fills in one loan request covering the student, the institution, and the programme fees.
- That request fans out to multiple participating financial institutions rather than a single lender.
- Institutions and lenders each get their own view of the applications relevant to them.
- The same Flutter codebase targets web, so the platform runs in a browser with no install step.
Why one codebase
Building it in Flutter meant the web front end and the mobile app shared models, validation, and API client code. For a form-heavy product where the rules about who can borrow what are the actual complexity, having one definition of those rules — rather than one per platform — is what kept the surface manageable.