基础组件库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

19 lines
407 B

  1. import 'package:flutter/material.dart';
  2. import 'package:pull_to_refresh/pull_to_refresh.dart';
  3. class RefreshFooter extends StatelessWidget {
  4. @override
  5. Widget build(BuildContext context) {
  6. return CustomFooter(
  7. height: 1,
  8. builder: (BuildContext context, LoadStatus model){
  9. return Container(
  10. height: 1,
  11. width: double.infinity,
  12. );
  13. },
  14. );
  15. }
  16. }