Posts by joao vitor • 13 points
8 posts
-
0
votes1
answer44
viewsA: Emulator of android studio closing alone
After days of searching, I found a solution to my problem. The original post can be found Here. The steps to solve this problem were: Go to the folder .android located in your user folder (It is…
-
-3
votes1
answer44
viewsQ: Emulator of android studio closing alone
beauty? Recently, I migrated to Kubuntu and tried to install Android Studio so I could emulate my apps. I followed this tutorial and I was able to install the AS successfully. However, when I try to…
-
0
votes0
answers43
viewsQ: Modify Pagination in table using Ant Design
Hello, I’m new to React and researching a little bit about some React UI, I found Ant Design. I followed the example of the site using the Table component, but the pagination is not the same as the…
-
0
votes1
answer587
viewsA: Relationship Manytoone / Onetomany Typeorm does not save foreign key
I was able to solve it after a little study of my application. The problem was not in the code itself, but in the way I sent the user reference. When I made the request to the server, I sent…
-
1
votes1
answer587
viewsQ: Relationship Manytoone / Onetomany Typeorm does not save foreign key
Hello, I am developing an Node API using Typeorm and Sqlite3, but when using the Manytoone/Onetomany relationship, it does not save the foreign key. The scenario is as follows: I have a user who can…
-
0
votes2
answers92
viewsA: display React-Native modal array
I managed to solve my problem using the map. Follow the code: {options.map((option, i) => ( <TouchableOpacity key={i} onPress={() => changeField(option, i)}>…
-
-2
votes2
answers92
viewsQ: display React-Native modal array
Hello, I am developing an app for the internship and the supervisor asked that in the search field, the user has the option to choose which field to search for. I thought of making a modal with the…
-
0
votes2
answers539
viewsQ: How to Disable React Native Back Button
Hello, I would like to know how I disable the return button of the createMaterialTopTabNavigator, from React-Native, in version 5. I managed to Disable the native button this way: import React,…