Skip to content

Commit

Permalink
Merge pull request #202 from progid/add_heic_to_is_image_cond
Browse files Browse the repository at this point in the history
Add .heic format to isImageFile condition list on ios
  • Loading branch information
xqqlv authored Mar 11, 2022
2 parents 6affe23 + 6e2133a commit ecc2f73
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ios/Classes/SwiftImageGallerySaverPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,8 @@ public class SwiftImageGallerySaverPlugin: NSObject, FlutterPlugin {
|| filename.hasSuffix(".PNG")
|| filename.hasSuffix(".gif")
|| filename.hasSuffix(".GIF")
|| filename.hasSuffix(".heic")
|| filename.hasSuffix(".HEIC")
}
}

Expand Down

0 comments on commit ecc2f73

Please sign in to comment.