1-) FLUTTER - Loading progressbar spinkit indicator animation kullanımı basit resimli anlatım
Center loadingContent() => Center(child: CircularProgressIndicator());
1-) PROGRESS OLARAK https://pub.dev/packages/flutter_easyloading
EasyLoading.show(status: "Yükleniyor...");
EasyLoading.dismiss(); // işlem bitince
2-) WİDGET OLARAK
kaynak : https://pub.dev/packages/flutter_spinkit
terminale yaz çalıştır -> flutter pub add flutter_spinkit -> ardından bunu çalıştır -> flutter pub get
KULLANIMI
body: Padding( padding: const EdgeInsets.all(8.0), child:SpinKitFadingCircle( itemBuilder: (BuildContext context, int index) { return DecoratedBox( decoration: BoxDecoration( color: index.isEven ? Colors.red : Colors.green, ), ); }, )),