ShowImageNetwork constructor
const
ShowImageNetwork({
- Key? key,
- required String imageUrl,
- bool isCircle = false,
- double imageCircleRadius = 35,
- double imageCircleElevation = 0,
- BorderRadius? imageBorderRadius,
- EdgeInsetsGeometry padding = EdgeInsets.zero,
- AlignmentGeometry alignment = Alignment.center,
- BoxFit? fit,
- BlendMode? blendMode,
- Widget onErrorImage(
- BuildContext context,
- String url,
- dynamic error
- Widget loadingBuilder(
- BuildContext context,
- String imageUrl
- double? width,
- double? height,
Implementation
const ShowImageNetwork({
Key? key,
required this.imageUrl,
this.isCircle = false,
this.imageCircleRadius = 35,
this.imageCircleElevation = 0,
this.imageBorderRadius,
this.padding = EdgeInsets.zero,
this.alignment = Alignment.center,
this.fit,
this.blendMode,
this.onErrorImage,
this.loadingBuilder,
this.width,
this.height,
}) : super(key: key);