Available for new projects
Hi, I'm Taha Darwish
Mobile App Developer & Software Engineer
Building scalable, high-performance mobile apps with Flutter.
From concept to deployment — pixel-perfect, tested, and production-ready.
0+
Years Experience
0+
Projects Shipped
0K+
App Downloads
main.dart
import 'package:flutter/material.dart';
void main() => runApp(const PortfolioApp());
class PortfolioApp extends StatelessWidget {
const PortfolioApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Taha Darwish',
theme: AppTheme.dark(),
home: const HomePage(),
);
}
}