File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
packages/image_picker/image_picker Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1+ ## 0.6.7+17
2+
3+ * iOS: fix ` User-facing text should use localized string macro ` warning.
4+
15## 0.6.7+16
26
37* Update Flutter SDK constraint.
Original file line number Diff line number Diff line change @@ -146,10 +146,10 @@ - (void)showCamera {
146146 animated: YES
147147 completion: nil ];
148148 } else {
149- [[[UIAlertView alloc ] initWithTitle: @" Error"
150- message: @" Camera not available."
149+ [[[UIAlertView alloc ] initWithTitle: NSLocalizedString( @" Error" , nil )
150+ message: NSLocalizedString( @" Camera not available." , nil )
151151 delegate: nil
152- cancelButtonTitle: @" OK"
152+ cancelButtonTitle: NSLocalizedString( @" OK" , nil )
153153 otherButtonTitles: nil ] show ];
154154 self.result (nil );
155155 self.result = nil ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: image_picker
22description : Flutter plugin for selecting images from the Android and iOS image
33 library, and taking new pictures with the camera.
44homepage : https://github.com/flutter/plugins/tree/master/packages/image_picker/image_picker
5- version : 0.6.7+16
5+ version : 0.6.7+17
66
77flutter :
88 plugin :
You can’t perform that action at this time.
0 commit comments