getEndOfPageView method

Widget getEndOfPageView()

Implementation

Widget getEndOfPageView() {
  return Container(
    padding: const EdgeInsets.only(top: 16, bottom: 16),
    decoration: const BoxDecoration(
      color: Color(0xff2a367e),
      borderRadius: BorderRadius.all(Radius.circular(10)),
    ),
    child: Center(
      child: Text(
        Message.getMessage('FilterWidget_ban_da_den_cuoi_trang'),
        style: const TextStyle(
          color: Colors.white,
          fontWeight: FontWeight.bold,
        ),
      ),
    ),
  );
}