import 'package:didvan/config/design_config.dart'; import 'package:didvan/constants/app_icons.dart'; import 'package:flutter/material.dart'; class ProfilePhoto extends StatelessWidget { const ProfilePhoto({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return GestureDetector( onTap: () { //TODO: Needs implementation }, child: Center( child: Stack( children: [ Container( height: 96, width: 96, decoration: const BoxDecoration( shape: BoxShape.circle, color: DesignConfig.lightPrimaryColor2, ), child: const Icon( DidvanIcons.profile_solid, size: 60, color: DesignConfig.darkPrimaryColor2, ), ), const Positioned( bottom: 4, right: 4, child: Icon( DidvanIcons.camera_regular, ), ), ], ), ), ); } }