Crafting digital experiences at the intersection of design and technology. Specializing in Flutter development and immersive web design.
I'm a passionate BTech Computer Technology student with expertise in Flutter, Web Dev, and UI/UX design. My journey in technology began when I wrote my first program, and since then, I've been fascinated by how code can create solutions.
With a CGPA of 7.51 and experience in both mobile and web development, I bring creative solutions to technical challenges.
Mobile Apps
Web Dev
UI/UX
AI
Bannari Amman Institute of Technology | 2021-2024
CGPA: 7.51
Coimbatore Institute of Technology | 2018-2021
Percentage: 79%
Sowdambikaa Matriculation HSS | 2017-2018
Percentage: 83.4%
A Flutter application that provides 360° panoramic views of temples, helping pilgrims virtually explore sacred sites before visiting.
A cross-platform mobile application that reads and writes NFC tags, capable of storing various data types including URLs and UPI payment links.
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Temple Finder',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: TempleViewScreen(),
);
}
}
class TempleViewScreen extends StatefulWidget {
@override
_TempleViewScreenState createState() => _TempleViewScreenState();
}
class _TempleViewScreenState extends State {
int _selectedIndex = 0;
final List _pages = [
TempleList(),
MapView(),
Favorites(),
Profile(),
];
void _onItemTapped(int index) {
setState(() {
_selectedIndex = index;
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Temple Finder'),
),
body: Center(
child: _pages.elementAt(_selectedIndex),
),
bottomNavigationBar: BottomNavigationBar(
items: const [
BottomNavigationBarItem(
icon: Icon(Icons.temple_buddhist),
label: 'Temples',
),
BottomNavigationBarItem(
icon: Icon(Icons.map),
label: 'Map',
),
BottomNavigationBarItem(
icon: Icon(Icons.favorite),
label: 'Favorites',
),
BottomNavigationBarItem(
icon: Icon(Icons.person),
label: 'Profile',
),
],
currentIndex: _selectedIndex,
selectedItemColor: Colors.blue,
onTap: _onItemTapped,
),
);
}
}
Run the code to see output
Test your knowledge of Flutter development with this interactive quiz.
Rearrange the code snippets to solve the programming challenge.
Rearrange these lines to create a working Flutter widget:
Match programming syntax pairs in this memory card game.