Posts by Guilherme Nimer • 151 points
5 posts
-
0
votes1
answer107
viewsA: How to use Commandparameter in Xamarin.Forms?
In XAML <ImageButton Source="{local:EmbeddedImage ResourceId=CreativeAutoMobile.Midia.btnfoto.png}" BackgroundColor="#c3c3c3" WidthRequest="50" CornerRadius="10" Clicked="BtnEnviarFotos_Click"…
-
2
votes1
answer225
viewsA: How to compress images in Xamarin.Forms?
If you use Crossmedia to take the photos you can configure image compression directly from it, follow an example of code: var file = await CrossMedia.Current.TakePhotoAsync(new…
-
0
votes2
answers86
viewsA: I need help with Activityindicator in Xamarin.Forms
I believe that solves your problem In XAML <ActivityIndicator x:Name="ActivityLoad" IsRunning="True" Opacity="0"/> No . Cs (c# back) public async void ClickMethod(object sender,EventArgs e) {…
xamarin-formsanswered Guilherme Nimer 151 -
0
votes3
answers97
viewsA: Navigation.Popasync() does not work when used as an option to exit the application
I advise not to use internal methods to close the application, Apple will bar the application and have a chance google do the same.
-
0
votes1
answer36
viewsA: Listview loads items therefore without text
Good afternoon Felipe, follows an example of how to make a listview structure, Model Class public class EmpresaCliente { public int IDEmpresa { get; set; } public int IDCadastroCliente { get; set; }…