Skip to content

Commit

Permalink
세션 상세 Dialog에서 연사 이미지를 터치하면 닫히는 현상 수정.
Browse files Browse the repository at this point in the history
  • Loading branch information
neulbo27 committed Mar 30, 2019
1 parent c0d0a77 commit dc52c3a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/pages/session_detail_dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,8 @@ class SessionDetailDialog extends ModalRoute<void> {
}

Widget avatarContainer(SpeakerModel speaker) {
return ClipOval(
return GestureDetector(
child: ClipOval(
child: FadeInImage.assetNetwork(
width: avatarSize,
height: avatarSize,
Expand All @@ -175,6 +176,9 @@ class SessionDetailDialog extends ModalRoute<void> {
placeholder: Platform.isAndroid ? Strings.IMAGES_DK_PROFILE : Strings.IMAGES_DK_IOS_PROFILE,
fit: BoxFit.fitHeight,
)
),

onTap: () => {}
);
}
}

0 comments on commit dc52c3a

Please sign in to comment.