I'm a Flutter & Android developer.
Recently, I've been exploring backend development & infrastructure with NestJS!
class Developer {
final String name = "Onesix (pyowonsik)";
final String location = "π°π· South Korea";
final List<String> interests = [
"π± Flutter & Cross-platform Mobile Development",
"π€ Native Android Development with Kotlin",
"π Backend Development with NestJS",
"π¨ Beautiful UI/UX Design",
"ποΈ Clean Architecture & Design Patterns"
];
Map<String, List<String>> techStack() {
return {
"mobile": ["Flutter", "Dart", "Kotlin", "Android"],
"backend": ["NestJS", "TypeScript", "PostgreSQL"],
"Infra": ["EC2", "Docker", "S3" , "RDS]
};
}
}


