xamarin.ios - MvvmCross: PictureChooser Plugin - Preview screen Button Text -
is there way change text in ios , android 2 buttons showing inside picture preview screen after take photo using mvvmcross picturechooser plugin?
i have searched on can't seam find anything.
thank you!
there's no way provided mvvmcross this.
the source code picture chooser in https://github.com/mvvmcross/mvvmcross/tree/v3.1/plugins/cirrious/picturechooser
on droid, uses standard actiongetcontent intent - https://github.com/mvvmcross/mvvmcross/blob/v3.1/plugins/cirrious/picturechooser/cirrious.mvvmcross.plugins.picturechooser.droid/mvxpicturechoosertask.cs#l37
on ios, uses standard uiimagepickercontroller - https://github.com/mvvmcross/mvvmcross/blob/v3.1/plugins/cirrious/picturechooser/cirrious.mvvmcross.plugins.picturechooser.touch/mvximagepickertask.cs
so customise these, you'll need replace code or see if there "standard" ways on each platform.
Comments
Post a Comment