kungfubaozi / swipe_refresh_layout

A flutter simple swipe refresh layout.More and load more

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

License:MIT License


Languages

Language:Dart 100.0%