SafeLocalImage constructor
Creates a SafeLocalImage widget that attempts to load a local image and handles missing files or permission issues.
Implementation
const SafeLocalImage({
Key? key,
required this.path,
this.height,
this.width,
this.fit = BoxFit.cover,
this.borderRadius = const BorderRadius.all(Radius.circular(0)),
this.showSettingsButton = true,
this.placeholderText,
this.textStyle,
this.icon,
this.verticalLayout = false,
}) : super(key: key);