SOFTWARE ENGINEER ● MOBILE AND WEB

I BUILD APPSTHAT PERFORM.

Engineering high-performance mobile and web apps with BLoC architecture, real-time systems, and measurably faster performance.

SELECTED PROJECTS

WORK

ChatNet
FLUTTERDARTWEBSOCKETSREST APIsBLoC

ChatNet

Real-time Flutter EV charging station locator with WebSockets, REST APIs, and BLoC state management.

WattVita
FLUTTERIoTBLE

WattVita

Smart home iOS/Android app controlling IoT devices via Bluetooth & Wi-Fi.

Gemini App
FLUTTERGEMINI APIAI

Gemini App

AI-powered assistant app with conversational UI, prompt history, and real-time response streaming.

HOW I BUILD

CODE CRAFT

Patterns I use daily - real code from production apps.

Pattern

BLoC

State management done right — predictable, testable.

Language
Dart / Flutter
1// ChatBloc — Real-time chat state2class ChatBloc extends Bloc {3  final ChatRepository _repo;4  StreamSubscription? _sub;56  ChatBloc(this._repo) : super(ChatInitial()) {7    on((event, emit) async {8      emit(ChatConnecting());9      _sub = _repo.messageStream().listen(10        (msg) => add(MessageReceived(msg)),11      );12      emit(ChatConnected());13    });1415    on((event, emit) {16      if (state is ChatConnected) {17        final prev = (state as ChatConnected).messages;18        emit(ChatConnected(messages: [event.msg, ...prev]));19      }20    });21  }22}
JOURNEY

EXPERIENCE

Professional Experience

Software Developer Intern

Superstars

DEC 2025 — APR 2026

Building scalable app features & optimizing CI-friendly workflows for production mobile apps.

Mobile App Developer

GrabTheSite

FEB 2023 — FEB 2024

Maintained production Flutter apps, implemented BLoC state management, integrated REST APIs, Firebase & SQL databases.

College Education

MS Computer Science

DePaul University, Chicago

SEP 2024 — JUN 2026

Advanced algorithms, software architecture, distributed systems, and machine learning.

BS Computer Engineering

Silver Oak University, Ahmedabad

AUG 2020 — MAY 2023

Graduated with honors. Strong foundations in data structures, algorithms, and systems programming.

TECHNOLOGIES

STACK

Flutter logo
Flutter
Dart logo
Dart
React logo
React
Next.js logo
Next.js
Firebase logo
Firebase
Supabase logo
Supabase
SQL
Git logo
Git
BLoC
REST APIs
WebSockets
Kotlin logo
Kotlin
JetCompose logo
JetCompose
TypeScript logo
TypeScript
GET IN TOUCH

LET'S BUILD
SOMETHING REMARKABLE.

Looking for a developer who ships fast, optimizes obsessively, and loves beautiful interfaces.