Skip to content

Instantly share code, notes, and snippets.

View oyeolamilekan's full-sized avatar
✌️
Peace

Oye Olalmilekan oyeolamilekan

✌️
Peace
View GitHub Profile
@oyeolamilekan
oyeolamilekan / cached_image.dart
Created September 23, 2021 16:36
Cached image provider, snippet.
class FETTCachedImageContainer extends StatefulWidget {
final String title;
final String? imageUrl;
final VoidCallback downloadImage;
const FETTCachedImageContainer({
Key? key,
required this.title,
required this.downloadImage,
this.imageUrl,