Thứ Tư, 28 tháng 8, 2019

Show 1 CircularProgressIndicator() trong flutter

void _onLoading() {

  showDialog(
    context: context,
    barrierDismissible: false,
    child: Center(
      child: Container(
        height: 30.0,
        width: 30.0,
        child: CircularProgressIndicator(
          backgroundColor: Colors.red,
          valueColor: AlwaysStoppedAnimation(Colors.redAccent),
        ),
      ),
    )
  );
}

Không có nhận xét nào:

Đăng nhận xét

How to reload app in flutter

  Phoenix . rebirth (context);