Posts by Andre Toledo Gama • 21 points
2 posts
-
0
votes1
answer133
viewsA: Error in executing Gulp tasks (task)
The reason for the error must be the version of your Gulp. Instead of gulp.task('default', ['browser-sync', 'watch']); Try it this way gulp.task('default', gulp.series('browser-sync', 'watch'));…
-
2
votes1
answer95
viewsQ: How do I access the app via a Url?
I want to access a screen in my app project, by mobile, through a URL that was sent to the email. The project is being developed at the expo and I am trying to use the "linking" of the expo same, I…