Posts by Marcus Duarte • 45 points
8 posts
-
0
votes1
answer95
viewsQ: After the 0.7.0 update of firebase_auth I can no longer log in with Google. How do I proceed to log in with google+firebase?
After the user used the Google login option he used this code, but after updating the firebase_auth for version 0.8.0+1 this code broke: var fUser = await fAuth.linkWithGoogleCredential( idToken:…
-
0
votes1
answer95
viewsA: After the 0.7.0 update of firebase_auth I can no longer log in with Google. How do I proceed to log in with google+firebase?
After looking at the source code of the lib I saw that the method linkWithGoogleCredential was replaced by linkWithCredential who receives a AuthCredential lib provides some classes that return a…
-
4
votes1
answer73
viewsQ: How do for the child widget of a Column expands to the maximum width of the parent(Column)?
Form( child: Column( children: <Widget>[ CustomTextFormField("E-mail"), CustomTextFormField('Senha'), Expanded( child: FittedBox( fit: BoxFit.fitWidth, child: RaisedButton( onPressed: () {},…
-
0
votes1
answer32
viewsA: Strange debug with Android Studio
Snooping here in Android Studio, I found an option to switch the view mode with error, thus facilitating reading and understanding in cases where more details appears in the title and not in the…
-
0
votes1
answer32
viewsQ: Strange debug with Android Studio
Note the print, the title(1) of the error has more details than the body(2) of the error. It’s not every mistake that comes along that way. You can configure the title to appear also along with the…
-
0
votes2
answers117
viewsA: Edittext.gettext on a null Object Reference
You were trying to retrieve the object in your MainActivity, however these objects were not inflated in the MainActivity you have to use the reference of View inflated to retrieve objects referenced…
-
0
votes2
answers128
viewsA: How to send multiple strings per url in Android studio?
I highly recommend using the retrofit to consume Apis interface TesteService{ @GET("{id}/{latitude}/{longitude}" Call<Objeto> getObject(@Path("id") String id, @Path("latitude") String…
androidanswered Marcus Duarte 45 -
0
votes1
answer47
viewsQ: onNext on Observer is never called
Consider the following code snippet. ReplaySubject<List<Object>> subject = ReplaySubject.create(); subject.subscribe(view::mostraListaObjetos); subject.onNext(getListOnline()); //logo…
rxjavaasked Marcus Duarte 45