MultiImageViewer constructor
const
MultiImageViewer({
- Key? key,
- required List<
ImageModel> images, - Color backgroundColor = Colors.black87,
- TextStyle textStyle = const TextStyle(fontSize: 30, color: Colors.white),
- double height = 216,
- double? width,
- Map<
String, String> ? networkImageHeaders, - bool enableSave = true,
- double gap = 2,
- Radius radius = const Radius.circular(5),
Implementation
const MultiImageViewer({
super.key,
required this.images,
this.backgroundColor = Colors.black87,
this.textStyle = const TextStyle(
fontSize: 30,
color: Colors.white,
),
this.height = 216,
this.width,
this.networkImageHeaders,
this.enableSave = true,
this.gap = 2,
this.radius = const Radius.circular(5),
});