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

当数据不满时,footer显示不全 #519

Open
1203556555 opened this issue Aug 18, 2021 · 4 comments
Open

当数据不满时,footer显示不全 #519

1203556555 opened this issue Aug 18, 2021 · 4 comments

Comments

@1203556555
Copy link

1203556555 commented Aug 18, 2021

当数据不满时,footer显示不全

微信图片_20210818191345
微信图片_20210818191340

class MerchantTestPage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('test'),
        backgroundColor: Colors.blue,
      ),
      body: RefreshConfiguration(
        child: SmartRefresher(
          enablePullUp: true,
          controller: RefreshController(
              initialLoadStatus: LoadStatus.noMore
          ),
          onLoading: (){},
          child: ListView.builder(
            itemCount: 2,
            itemBuilder: (context, index) {
              return Container(
                width: double.infinity,
                height: 370,
                color: Colors.yellow,
              );
            },
          ),
        ),
      ),
    );
  }
}
@lfclfc
Copy link

lfclfc commented Feb 10, 2022

我也是,请问解决了吗

@1203556555
Copy link
Author

@lfclfc 我找到了问题所在,你看看我提交的#521

@lfclfc
Copy link

lfclfc commented Feb 10, 2022

@1203556555 好的我试一下 谢谢你

@lfclfc
Copy link

lfclfc commented Feb 10, 2022

@1203556555 解决啦 你太厉害了 谢谢

lauglam pushed a commit to lauglam/pull_to_refresh that referenced this issue Jun 17, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants