Did Flutterflow change where local files are uploaded to? I previously had this code returning files for images or videos that is no longer finding them successfully. It took a while to find the exact location last time and a documented change to this path would be nice.
Anybody have issues with local video or image uploads and finding their path? Similar code found below.
Future<String?> getMediaLocalPath(FFUploadedFile file) async {
final tempDir = await path_provider.getTemporaryDirectory();
return "${tempDir.path}/${file.name}";
}