anErrorOccuredWhenLoadingTheData function

Widget anErrorOccuredWhenLoadingTheData()

Implementation

Widget anErrorOccuredWhenLoadingTheData() {
  String errorText = 'Terjadi kesalahan saat memuat data. Silahkan coba lagi.';

  return Center(
    child: Padding(
      padding: const EdgeInsets.all(16),
      child: Text(errorText, style: const TextStyle(color: Colors.red)),
    ),
  );
}