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

Add context to load more delegate build child #34

Open
wants to merge 2 commits 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
15 changes: 11 additions & 4 deletions lib/src/loadmore_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,7 @@ class DefaultLoadMoreViewState extends State<DefaultLoadMoreView> {
height: delegate.widgetHeight(widget.status),
alignment: Alignment.center,
child: delegate.buildChild(
context,
widget.status,
builder: widget.textBuilder,
),
Expand Down Expand Up @@ -364,16 +365,22 @@ abstract class LoadMoreDelegate {
/// build loadmore delay
Duration loadMoreDelay() => Duration(milliseconds: _loadMoreDelay);

Widget buildChild(LoadMoreStatus status,
{LoadMoreTextBuilder builder = DefaultLoadMoreTextBuilder.chinese});
Widget buildChild(
BuildContext context,
LoadMoreStatus status, {
LoadMoreTextBuilder builder = DefaultLoadMoreTextBuilder.chinese,
});
}

class DefaultLoadMoreDelegate extends LoadMoreDelegate {
const DefaultLoadMoreDelegate();

@override
Widget buildChild(LoadMoreStatus status,
{LoadMoreTextBuilder builder = DefaultLoadMoreTextBuilder.chinese}) {
Widget buildChild(
BuildContext context,
LoadMoreStatus status, {
LoadMoreTextBuilder builder = DefaultLoadMoreTextBuilder.chinese,
}) {
String text = builder(status);
if (status == LoadMoreStatus.fail) {
return Container(
Expand Down