Posts by Joao Victor Pereira santos • 126 points
4 posts
-
3
votes1
answer173
viewsA: Textfield flutter using Cupertino theme
There is the property "prefixIcon", below the demonstration of its use: TextField( decoration: InputDecoration( prefixIcon: Icon(Icons.search) ), ) This is the documentation link for this property:…
-
5
votes2
answers1137
viewsA: Phonegap does not open external site!
Guilherme, Phonegap in its own documentation has a detailed explanation regarding internet access through the App. Follow the link:…
-
0
votes1
answer290
viewsA: External access Phonegap
Ezequiel, Phonegap in its own documentation has a detailed explanation regarding the internet access by the App. Follow the link:…
apache-cordovaanswered Joao Victor Pereira santos 126 -
0
votes2
answers77
viewsA: Error trying to save combobox and Masktextbox
There is a different way that you can save the customer type: Change the "type" field of the database, from INT for VARCHAR Assign the Combobox text to a String, and then save it to the database. I…