Posts by Thiago Tibau • 493 points
30 posts
-
0
votes1
answer95
viewsA: How do I access the app via a Url?
What you need is Deep Link, with it you can configure URLS to access your app. There are settings for Android and Ios that are made separately. Here is an example of a documentation in Portuguese…
-
0
votes1
answer75
viewsA: View api with Ionic
You’re giving a *ngFor in some answer that is not an array, that is what it is complaining about, it is coming as an object. If you want to display the fields of that object. In the case of this…
-
0
votes1
answer677
viewsA: Problems with React Native
There are 5 possible solutions: Update your Act-Note, some versions have windows conflict; Downgrade your Act-Activate: If your RN is already updated, downgrade, there are some versions that have…
-
0
votes3
answers1758
viewsA: Organize array in alphabetical order
IF YOU WISH TO SORT AND ALSO CHANGE THE INDEX: According to PHP documentation: PHP SORT <?php $fruits = array("lemon", "orange", "banana", "apple"); sort($fruits); foreach ($fruits as $key =>…
-
1
votes1
answer11598
viewsA: Typeerror: items.map is not a Function
The first thing you should do is give a console.log(res.json()) to know what is coming in this request. The .map will only be executed if it is an array, if something is coming in that res json.()…
-
1
votes2
answers252
viewsA: Error opening Ionic App
From what you wrote, it would be Ionic serves and not Ionic server If you have just misspelled here, try the following: yarn remove ionic or npm uninstall -g ionic npm cache clean if it doesn’t…
ionicanswered Thiago Tibau 493 -
0
votes2
answers1149
viewsA: Insert comments into an IONIC app
When you log in, you receive this user + token + other information in the success of the login call. What you probably have to do is save this user to localstorage, see: Ionic Storage or Ionic…
-
0
votes1
answer75
viewsA: Saving data in Angular API
The error 404 'ignorantly' speaking, means that this request did not find an endpoint, IE, check this url you are passing, because it is not finding the server.
-
1
votes2
answers64
viewsA: How to access a jquery without id?
Try using the attribute selector: Response of the stack overflow It would be something like: img[data-uid*="_b03bc8304532"] There are more references on this link: Attribute selector…
-
0
votes1
answer156
viewsA: Resource: net::ERR_CONNECTION_REFUSED - Ionic Version 3.x
Apparently your backend is denying this request because it is running on localhost. You need to enable CORS in the header of your call in php: https://enable-cors.org/server_php.html Basically you…
-
0
votes1
answer91
viewsA: Bugando image keyboard on android [IONIC 2]
Insert this CSS into the page where this is happening: .scroll-content { padding-bottom: 0 ! Mportant; }
-
-1
votes1
answer42
viewsA: My Javascript stopped passing variables when I use User-Friendly URL
Try to pass as string template: Template string - Javascript Open a string with ` Inside the call with template ${variable} It would be something like:…
-
1
votes2
answers314
viewsA: Navigation Drawer customized and colorful
Add the color to your navigation view activity_main.xml: app:itemIconTint="@android:color/blue" The default hue is black, but you can use an even darker shade of black using # 000000…
-
1
votes1
answer1831
viewsA: Android Target and the Android SDK not found or installed... but it is all installed, how to solve?
I strongly recommend the use of Android Studio, although you will not develop in it, it is great to maintain the SDK. In addition to the installation solve the environment variables: Android Studio…
-
0
votes2
answers165
viewsA: Open page with information
Install the React-navigation: React-navigation Configure the routes with the stackNavigator Call the route in the item onPress <TouchableOppacity onPress={() =>…
react-nativeanswered Thiago Tibau 493 -
-1
votes1
answer518
viewsA: Cordova: Android SDK is not set up properly. Make sure that the Android SDK 'tools' and 'Platform-tools' Directories are in the PATH variable
you need to set the variable ANDROID_HOME as an environment variable, without the variable defined, Cordova cannot execute the command android. I recommend reading this article: Setting up android…
-
0
votes2
answers852
viewsA: Error running mobile app
Caio, a question, has the environment variable ANDROID_HOME set? If you do not know, run the command: echo $ANDROID_HOME for mac or linux. If you haven’t set the variable, set it by pointing to…
-
4
votes1
answer1173
viewsA: REACT-NATIVE ERROR
First try to perform the error steps: Clean the Watchman watches: watchman watch-del-all Delete the node_modules folder: rm -rf node_modules && npm install or delete normally if you are on…
-
0
votes2
answers543
viewsA: HTML Drag and Drop on mobile (touchscreen screens)
I recommend using Sortable: Rubaxa/Sortable This guy is a plugin that uses native features for responsive drag and drop, it can be implemented with any CSS framework…
htmlanswered Thiago Tibau 493 -
0
votes0
answers24
viewsQ: Ionic capacitor npx Sync not working
when I add a plugin, I need to run the command: npx cap sync So that it can load the plugin, however I’m getting the error below:…
-
0
votes0
answers1968
viewsQ: A problem occurred while parsing the package
I always developed apps quietly and use my mobile phone Xiaomi Mi6 to test the applications I develop, only that from one moment to the next, I can’t test any application I myself am developing, if…
-
1
votes2
answers501
viewsA: Error in deploy Django/app in Heroku?
Heroku can’t stand the python 3.6.1, only the 3.6.2 Follow the official link…
-
1
votes1
answer40
viewsA: Error trying to reinstall Python
Give a check, your computer can be 64-bit and that’s for 32-bit
python-3.xanswered Thiago Tibau 493 -
1
votes1
answer113
viewsA: How to link a different stylesheet to the Django base template stylesheet
First in his html base. create a new block inside the head tag: <head> <link rel="stylesheet" type="text/css" href="{% static "appfolder/css/base.css" %}" /> {% block novobloco %}{%…
-
1
votes2
answers12370
viewsA: How to uninstall Cordova and Ionic completely from windows
Spin: npm uninstall cordova ionic If you want to reinstall later, you need to clear the cache: npm cache clean -f npm install npm -g If the problem persists, it is recommended that you uninstall and…
-
0
votes1
answer148
viewsA: Ionic app building problem
Surely the problem is in setting the environment variable JAVA_HOME Installing Ionic on Windows (Explains about JAVA_HOME) If you use Linux, just use export JAVA_HOME={YOUR_PATH}…
ionicanswered Thiago Tibau 493 -
5
votes2
answers80
viewsQ: Error in build Ionic framework
Gentlemen, I have migrated to linux and I have a question/problem. I already have the android sdk installed with their respective dependencies installed, I run the android command and open me the…
-
0
votes1
answer1219
viewsQ: How to pass password in the Docker run
I have in my Docker file a command that I clone using git, I am using the: ENV USUÁRIO \ SENHA Over there (inside the dockerfile) I’m calling these ENV: RUN git clone git clone…
dockerasked Thiago Tibau 493 -
0
votes4
answers1365
viewsA: Find out the type of variable in ruby on Rails
Perhaps making a comparison using the .class I think the .class can help you by giving you the information of the required variable, so just make the comparison!
-
0
votes2
answers211
viewsQ: Where’s the folder code for Gento 2?
Would you like to know where to place the modules in Magento 2? In Magento 1.9x, I added a module in the folder app/code, but in Magento 2 the structure was changed.
magentoasked Thiago Tibau 493