Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WaterDropHeader add backgroundColor #554

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions lib/src/indicator/waterdrop_header.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ import '../smart_refresher.dart';

/// QQ ios refresh header effect
class WaterDropHeader extends RefreshIndicator {
/// background color
final Color? backgroundColor;

/// refreshing content
final Widget? refresh;

Expand Down Expand Up @@ -43,6 +46,7 @@ class WaterDropHeader extends RefreshIndicator {
size: 15,
color: Colors.white,
),
this.backgroundColor,
}) : super(
key: key,
height: 60.0,
Expand Down Expand Up @@ -150,8 +154,10 @@ class _WaterDropHeaderState extends RefreshIndicatorState<WaterDropHeader>
],
);
} else if (mode == RefreshStatus.idle || mode == RefreshStatus.canRefresh) {
return FadeTransition(
child: Container(
return Container(
color: widget.backgroundColor,
height: 60.0,
child: FadeTransition(
child: Stack(
children: <Widget>[
RotatedBox(
Expand Down Expand Up @@ -182,12 +188,12 @@ class _WaterDropHeaderState extends RefreshIndicatorState<WaterDropHeader>
)
],
),
height: 60.0,
),
opacity: _dismissCtl);
opacity: _dismissCtl),
);
}
return Container(
height: 60.0,
color: widget.backgroundColor,
child: Center(
child: child,
),
Expand Down