Skip to content

kungfubaozi/swipe_refresh_layout

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

swipe_refresh_layout

a flutter simple swipe refresh layout,container more and load more

effect

use

return new SwipeRefreshLayout(
  onLoad: _handlerRefresh,//Futrue<Null>
  onLoadMore: _handlerRefreshMore,//Futrue<Null>
  child: new ListView(
    children: _notices.map((Notice notice) {
      return new ListTile(
        title: new Text(notice.title),
          subtitle: new Text(notice.content));
      }).toList(),
));

About

A flutter simple swipe refresh layout.More and load more

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages