Fix bottom radius behavior

This commit is contained in:
vishnukvmd 2022-12-16 12:08:42 +05:30
parent abfc286885
commit 94251a12fa

View file

@ -234,13 +234,12 @@ class _AlbumParticipantsPageState extends State<AlbumParticipantsPage> {
}
},
isTopBorderRadiusRemoved: listIndex > 0,
isBottomBorderRadiusRemoved:
listIndex == viewers.length,
isBottomBorderRadiusRemoved: isOwner,
borderRadius: 8,
),
listIndex == viewers.length
isOwner
? DividerWidget(
dividerType: DividerType.menu,
dividerType: DividerType.solid,
bgColor:
getEnteColorScheme(context).blurStrokeFaint,
)