evanave

Results 4 comments of evanave

``` _swipeGesure() { var swipeThreshold = 50; if (this._touchendX < this._touchstartX - swipeThreshold) { return this.navigateRight(); } if (this._touchendX > this._touchstartX + swipeThreshold) { return this.navigateLeft(); } } ```

I forget which one of these fixed the issue for me, but you can try the following: You also may need to run flutter clean and may also need to...

I'm running into the same issue. It seems to be caused by the IP address that is returned. I think it's returning the load balancer IP and not the client...

Solution! Use this to get the client's IP address: `$ip = request()->header('X-Forwarded-For'); ` Instead Of: `$ip = request()->ip(); ` Does anybody more knowledgeable than myself see any flaws with this?