|
|
|
@ -338,13 +338,12 @@ class _LiveRoomAnchorShowcaseState extends State<LiveRoomAnchorShowcase> { |
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
if(userInfo.isFriend != true) |
|
|
|
Positioned( |
|
|
|
bottom: 5.w, |
|
|
|
right: 5.w, |
|
|
|
child: Row( |
|
|
|
children: [ |
|
|
|
if(!isCurrentUser) GestureDetector( |
|
|
|
if(!isCurrentUser && userInfo.isFriend != true) GestureDetector( |
|
|
|
onTap: (){ |
|
|
|
if(userInfo.isFriend == true){ |
|
|
|
return; |
|
|
|
@ -371,7 +370,7 @@ class _LiveRoomAnchorShowcaseState extends State<LiveRoomAnchorShowcase> { |
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
if(!isCurrentUser) SizedBox(width: 5.w,), |
|
|
|
if(!isCurrentUser && userInfo.isFriend != true) SizedBox(width: 5.w,), |
|
|
|
Container( |
|
|
|
width: 20.w, |
|
|
|
height: 20.w, |
|
|
|
|