buildUserPhoto method
Implementation
Widget buildUserPhoto(BuildContext context) {
return SizedBox(
height: 60.0,
child: Row(
children: [
AppText('Photo', style: TextStyles.normal(context)),
const Spacer(),
buildUserAvatar(context),
],
),
);
}