Dan

Results 34 comments of Dan

Of course it works, but it will not play the animation :( currently I'm using this: ``` private void hideFab(final FloatingActionButton fab) { fab.hide(true); fab.setVisibility(GONE); } ``` It's a "patch"...

I found out this also happening when using `fab.hide(true)` Without `.setVisibility(GONE).` it doesn't wait for the animation to finish. I'm currently using: ``` private void hideFab(final FloatingActionButton fab) { fab.hide(true);...

Yes I am setting my own animation using ``` app:fab_showAnimation="@anim/fab_scale_up" app:fab_hideAnimation="@anim/fab_scale_down" ``` But still the "patch" function I have is not the best approach, it will be better to have...

@tananaev I actually missed that, but as I see this only works for an already released version and doesn't let developers build docker images locally for local deployments/testing. What do...

@tananaev againsts [traccar-docker](https://github.com/traccar/traccar-docker)? If so, I should create a development docker overthere that will pull from the [traccar](https://github.com/traccar/traccar/pull/4010) repo and build, right? Maybe [traccar-docker](https://github.com/traccar/traccar-docker) should be a sub-repo like [traccar-web](https://github.com/traccar/traccar-web)?

Thanks @petrsloup , Do you think maybe it's worth combining `req.hostname` with `req.headers.host` to maintain the port as a workaround until Express 5 is released? Let me know,

Hi @petrsloup, I made a nice workaround: ``` app.all('*', function (req, res, next) { req.resolvedHost = req.headers['x-forwarded-host'] ? req.headers['x-forwarded-host'] : req.headers.host; next(); }); ``` Then I access the `resolvedHost`, you...