mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 21:09:21 +00:00
Fix missing splash effect on memberships pane
This commit is contained in:
parent
922fce541f
commit
736accaca4
@ -71,8 +71,13 @@ class _MembershipsPanelState extends SafeState<MembershipsPanel> {
|
||||
Widget build(BuildContext context) {
|
||||
if (_membershipList == null) return buildCenteredProgressBar();
|
||||
|
||||
return RefreshIndicator(
|
||||
key: _refreshKey, child: _buildMembershipsList(), onRefresh: _refresh);
|
||||
return Material(
|
||||
color: Colors.transparent,
|
||||
child: RefreshIndicator(
|
||||
key: _refreshKey,
|
||||
child: _buildMembershipsList(),
|
||||
onRefresh: _refresh),
|
||||
);
|
||||
}
|
||||
|
||||
Widget _buildMembershipsList() {
|
||||
|
Loading…
Reference in New Issue
Block a user