Available for Freelance Projects

Zabihullah
Sajaad

Full-Stack Developer with a degree in Computer Science. Crafting high-performance Android, iOS, Desktop, Web, and iPad applications that solve real-world problems.

50+
Apps Built
5+
Platforms
100%
Committed
// Zabihullah Sajaad
// Full-Stack Developer

class Developer {
  private name = "Zabihullah Sajaad";
  private apps = 50;
  private platforms = [
    "Android", "iOS",
    "Flutter", "Web",
    "Desktop", "iPad"
  ];

  getReady() {
    return "Let's build!";
  }
}
A+
Grade
01 / Hero
02 / About
Zabihullah Sajaad
Software Developer — Afghanistan
B.Sc. Computer Science

The Developer
Behind the Code

I am Zabihullah Sajaad, a passionate and versatile Full-Stack Developer based in Kandahar, Afghanistan. Holding a Bachelor's degree in Computer Science, I have dedicated myself to mastering the art and science of software development across multiple platforms.

My journey has taken me from building native Android and iOS applications to crafting responsive web platforms, scalable desktop software, and elegant database architectures. With over 50 completed projects, I bring both depth of expertise and breadth of experience.

"I don't just write code — I engineer experiences that make a meaningful difference in people's lives."
Full Name Zabihullah Sajaad
Location Kandahar, Afghanistan
Degree B.Sc. Computer Science
Email zabihsajaad39@gmail.com
Phone +93 705 808 213
Status Open to Work
03 / Skills

My Expertise

From low-level system design to pixel-perfect UI, my skills span the full spectrum of modern software development — refined through 50+ production deployments.

A
Android Development
Java Kotlin Android SDK Jetpack Room DB Retrofit
i
iOS / iPad Development
Swift SwiftUI UIKit Xcode CoreData ARKit
F
Flutter / Cross-Platform
Flutter Dart Widgets Firebase REST API Bloc / Riverpod
W
Web Development
React Vue.js Node.js PHP Laravel HTML/CSS
D
Desktop Apps
C# .NET WPF Electron Python Qt
DB
Databases
MySQL PostgreSQL SQLite MongoDB Firebase Redis
+
Other Tools
Git Docker REST API GraphQL CI/CD Linux
Android Development95%
iOS / Swift88%
Flutter / Dart90%
Web (React / Node)90%
Desktop (C# / .NET)85%
Database Design92%
UI/UX Design80%
04 / Services
What I Offer

Services I Provide

End-to-end development solutions tailored for startups, enterprises, and entrepreneurs who demand quality.

01
Mobile App Development
Native and cross-platform mobile applications for Android and iOS, built with performance, scalability, and beautiful UX at the forefront. From concept to App Store deployment.
KotlinJavaSwiftSwiftUIFlutterReact Native
02
Web Application Development
Full-stack web applications — from dynamic single-page apps to complex enterprise portals. Clean code, RESTful APIs, and exceptional performance baked in from day one.
ReactVue.jsNode.jsLaravelPHPMySQL
03
Desktop Software Development
Powerful, feature-rich desktop applications for Windows, macOS, and Linux. Business tools, data management systems, and utility software engineered for reliability.
C#.NETWPFElectronPythonQt
04
Database Architecture & Design
Designing robust, optimized, and scalable database systems. From schema design to query optimization, ensuring your data infrastructure supports your growth.
MySQLPostgreSQLMongoDBSQLiteFirebaseRedis
05 / Projects

Featured Projects

E-Commerce App
Android
ShopEase — E-Commerce App
A full-featured e-commerce Android app with real-time inventory, payment gateway, and an intuitive product catalog.
Kotlin / Firebase
Health Monitor iOS App
iOS
VitalTrack — Health Monitor
iOS health tracking app integrating HealthKit, real-time vitals monitoring, and AI-powered wellness insights for daily use.
Swift / HealthKit
School Management Desktop
Desktop
EduCore — School System
A comprehensive school management desktop system handling student records, attendance, grading, and staff management.
C# / SQL Server
Real Estate Web Platform
Web
PropNest — Real Estate Platform
A modern real estate listing and management web platform with map integration, virtual tours, and a powerful admin dashboard.
React / Laravel
iPad Task Manager
iPad
TaskBoard Pro — iPad App
A productivity-first iPad app built with SwiftUI featuring multi-window drag-and-drop Kanban boards, team sync, and offline mode.
SwiftUI / CloudKit
POS System Desktop
Desktop
RetailPro — Point of Sale
Full-featured point-of-sale desktop system with inventory management, barcode scanning, receipt printing, and real-time sales analytics.
.NET / SQLite
Flutter E-Commerce App
Flutter
FoodieMarket — Flutter App
A cross-platform food delivery app built with Flutter & Dart featuring real-time order tracking, in-app chat, and a seamless payment experience.
Flutter / Dart / Firebase
06 / Experience

Work Experience

A career built on delivering impactful software solutions across diverse industries and platforms.

2022 — Present
Senior Full-Stack Developer
Freelance / Independent Contractor
Leading end-to-end development of mobile and web applications for international clients. Delivered 20+ projects across healthcare, e-commerce, education, and fintech sectors.
React Kotlin Swift Node.js Firebase
2020 — 2022
Android Developer
Tech Solutions — Kandahar, Afghanistan
Developed and maintained Android applications for local businesses and government organizations. Specialized in offline-first architecture for low-connectivity environments.
Java Kotlin SQLite REST API
2019 — 2020
Junior Web Developer
Digital Agency — Afghanistan
Built responsive websites and web applications for clients in retail, services, and education. Gained deep experience in full-stack JavaScript and PHP development.
PHP Laravel MySQL Vue.js
07 / Testimonials
Client Reviews

What Clients Say

Zabihullah delivered our Android e-commerce app ahead of schedule with exceptional quality. His attention to detail and technical knowledge exceeded our expectations. The app has been a game-changer for our business.
AK
Ahmad Karimi
CEO, RetailAF
We hired Zabihullah to build our school management system. The result was a flawlessly designed desktop application that our staff picked up immediately. Highly professional and responsive throughout the project.
SM
Sara Mohammadi
Director, EduCenter
Outstanding iOS developer. Zabihullah built our health monitoring app with a level of polish and performance we didn't think was possible in the timeframe. He understands both the technical and user experience dimensions perfectly.
RN
Reza Nawabi
Founder, HealthTech

Tools & Technologies

Flutter
Dart
Kotlin
Swift
React
Node.js
C#
.NET
Laravel
Firebase
PostgreSQL
MongoDB
Docker
Vue.js
Flutter
Dart
Kotlin
Swift
React
Node.js
C#
.NET
Laravel
Firebase
PostgreSQL
MongoDB
Docker
Vue.js
Fl
Flutter
D
Dart
K
Kotlin
S
Swift
R
React
N
Node.js
C#
C Sharp
P
Python
L
Laravel
F
Firebase
PG
PostgreSQL
M
MongoDB
Dk
Docker
V
Vue.js
08 / Code
Code Samples

Clean Code Philosophy

Readable, maintainable, and efficient — a glimpse into how I approach real engineering challenges.

UserRepository.kt
// Clean Repository Pattern — Android
class UserRepository(
  private val api: ApiService,
  private val dao: UserDao
) {
  fun getUsers(): Flow<Result<List<User>>> = flow {
    emit(Result.loading())
    try {
      val remote = api.fetchUsers()
      dao.insertAll(remote)
      emit(Result.success(remote))
    } catch (e: Exception) {
      val cached = dao.getAll()
      emit(Result.error(e, cached))
    }
  }
}
ContentView.swift
// SwiftUI — Modern iOS View
struct DashboardView: View {
  @StateObject private var vm =
    DashboardViewModel()

  var body: some View {
    NavigationStack {
      List(vm.items) { item in
        ItemRowView(item: item)
      }
      .navigationTitle("Dashboard")
      .task { await vm.load() }
      .refreshable { await vm.refresh() }
    }
  }
}
09 / Achievements
Milestones

Numbers That Matter

50+
Apps Delivered
5
Platforms Mastered
30+
Happy Clients
5+
Years Experience
15+
Technologies Used
100%
Project Completion Rate
20+
Database Systems
B.Sc.
Computer Science Degree
10 / Contact
Get In Touch

Let's Build Something Incredible

Phone
+93 705 808 213
Email
zabihsajaad39@gmail.com
Location
Kandahar, Afghanistan
Currently available for new projects and freelance opportunities.