Projects
A lot of ideas, but some are still under construction!
Xpad | Fintech App
A seamless fintech application enabling users to transact and manage finances securely.Learn More...
ResqX Customer | Emergency Services App
On-demand emergency services for car owners, from towing to fuel delivery.Learn More...
ResqX Pro | Responder App
A mobile app for responders to accept and manage emergency service requests.Learn More...
ResqX Web | Emergency Services Platform
A web platform for managing ResqX services, customers, and responders.Learn More...
Treegar | Investment & Carbon Offset App
A green investment platform helping users invest while offsetting carbon footprints.Learn More...
Errand360 | Logistics & Delivery Platform
A last-mile logistics platform connecting riders, vendors, and users in real time.Learn More...
Xpad Website
Landing website for Xpad, a fintech platform for digital investments and transactions.Learn More...
ARM One Website
Corporate landing page for ARM, a financial services company in Nigeria.Learn More...
Portfolio | Noel Owolabi
My personal developer portfolio showcasing projects, skills, and career journey.Learn More...
projects.ts
class Project {
final String name;
final String type;
final List<String> stack;
Project(this.name, this.type, this.stack);
void show() {
print("📱 $name — $type [Stack: ${stack.join(", ")}]");
}
}
void main() {
final projects = [
Project("Xpad", "Fintech App", ["Flutter"]),
Project("Treegar", "Investment App", ["Flutter"]),
Project("PennyTree", "Financial App", ["Flutter"]),
Project("Errand360", "Logistics App", ["Flutter", "Laravel"]),
];
projects.forEach((p) => p.show());
}