Posts by Matheus Marques • 51 points
5 posts
-
0
votes2
answers342
viewsA: How do I store 0 or 1 of a checkbox?
When I work with checkbox always leave a default in the migrate: $table->tinyInteger('dashboard')->default(0); If the checkbox was not selected the request does not receive anything and to…
-
0
votes1
answer2219
viewsA: Login and login to Laravel 5.7
Just so you understand, what would be the point of doing it this way? The Laravel documentation is very good, as soon as you run the php Artisan make:auth command it already creates the whole…
-
0
votes2
answers117
viewsA: Save phrase in Textview when closing the app
To help follow example using Sharedpreferences I took from a project of mine: public static final String MY_PREFS = "MEUAPP"; SharedPreferences preferences = getSharedPreferences(MY_PREFS,…
-
1
votes1
answer382
viewsA: Images disappear after build
The problem is relative path. How it works in the emulator: <img src="../assets/img/teste.png"> So you must work on the device: <img src="assets/img/teste.png">…
-
1
votes2
answers1210
viewsA: How to install Javafx?
In JDK 7 it is already included, no need for external API, if you want to get started use the examples on the Oracle site. http://docs.oracle.com/javafx/2/get_started/jfxpub-get_started.htm…