totalBarPaginate method

Widget totalBarPaginate()

Implementation

Widget totalBarPaginate(){
  var rows =  RowTemplate.wrapChildren( [
    txt_total() ,
    tf_pageGoTo(),
    bt_go()
  ]);

  //gravity layout
  return Container(
    child: rows,
    // color: Colors.yellow,
    // width: DeviceTools.getWidth(),
    margin: EdgeInsets.symmetric(vertical: DSDimen.space_level_4),
    alignment: Alignment.center,
  );
}