Prism Regions in Xamarin Forms

If you don’t know what Prism is, I recommend that you read this article first. On Prism 8.0, the Prism Team released an amazing feature called Regions, which gives us a lot of flexibility in handling different views on a page. To understand it, let’s see the following use case: We have a TabbedView (Or […]

Continue Reading

XAML Naming Conventions in Xamarin Forms

While developing applications, one of the things that help maintain the quality of your code is adhering to the naming conventions of the programming language you are using. As Xamarin Developers there are predefined rules that we usually follow in our C# code. But what happens with our XAML? Since there’s no pre-defined naming convention […]

Continue Reading

Online Panel – Woman, data, wine and more @aprendiendobdconsql

On November 30, I participated in a panel called woman, data, wine, and more along with Elena López, Leomaries Reyes, Leslie Ramirez, Elisabeth Sanquintin, Gilda Alvarez, and Yesica Hernandez, where we talked about our experience being a woman in tech. Place: Online Language: Spanish Date: Novembre 30, 2020 Attendees: 200~ Event: https://www.youtube.com/watch?v=eC7oN96x3JA&t=189s

Continue Reading

Online talk: C# Good Practices @T DSC Universidad APEC

On October 30, Rendy Del Rosario and I gave a talk on C # good practices covering topics such as standardization, simplification, readability, exposure, and performance, we also gave some final tips on how to improve your C # code. Slides here: C# Good practices from Charlin Agramonte Place: Online Language: Spanish Date: October 30, 2020 Attendees: 150~ Video recorded: https://www.youtube.com/watch?v=q17FnekeYmY

Continue Reading

Stop doing IsVisible=“true/false” to Show/Hide Views in RunTime in Xamarin Forms

When developing UI a common use case is to hide/show a View according to a certain condition, when thinking on how to do this the first thing that comes to mind is to add an IsVisible property and just hide/show it according to a condition but doing that has performance implications since hiding an element […]

Continue Reading