Posts by Zowye • 51 points
4 posts
-
0
votes0
answers38
viewsQ: How to do a same @Multipart POST call by sending an image, String fields and also an Array of objects?
On a call, I register a professional, which involves sending your avatar, which appears in the first line as file and also send other attributes of the professional, for example, the place where he…
-
0
votes1
answer38
viewsA: How to add a Chip (Filter type) dynamically (via code) ? (Kotlin)
I found a solution that worked legal! Follows the Link…
-
0
votes1
answer38
viewsQ: How to add a Chip (Filter type) dynamically (via code) ? (Kotlin)
I need to add Chips Filter type (image below) dynamically Attempt 1 I tried to create the Chip in a totally dynamic way: fun onAddChip(name: String){ val chip = Chip(this) chip.TYPE = Filter //Eu…
-
5
votes1
answer252
viewsQ: Access to object properties in a list (KOTLIN). Why is it so complicated?
I’m trying to do something that I think is extremely simple: Given a class called Student, i instated 3 students and added on a list (mutableListOf). That done, I want to access the name of the…