Sleeyax

Results 174 comments of Sleeyax

I've been a long-time user and fan of mitmproxy, but over the years I’ve felt the web UI lagging behind. Recently, I decided to go down the rabbit hole and...

The `Pager` composable is exactly what I need in terms of transitioning between the different screens, but I'm not sure how to implement back presses and deeplinks with it. Both...

Something like this replicates the `Pager` effect nicely, but yes then I'd need access to the `BackStackEntry` to determine the next tab/item: ```kotlin navTransition = NavTransition(slideInHorizontally(initialOffsetX = { val currentTabIndex...

Ah I see. Well it's not exactly a requirement in for the app I'm working on anyways, I was just curious how one would implement such a feature. > maybe...

> This action is inconsistent with UX What do you mean?

The project currently targeting binance EU only. I'm not sure if just changing the domain works. It could work if the API is the exact same. I'm not a US...

We use the following binance API wrapper library: https://github.com/adshao/go-binance They don't really mention a different config or something being required for the US either. Have you tried to run this...

The API domain is set here: https://github.com/adshao/go-binance/blob/a836b57116022e8221034e240bc60e9f4278fff5/v2/client.go#L125-L128 And according to the binance docs you do indeed need to change the domain to `binance.us`: [![image](https://github.com/user-attachments/assets/9706c1f2-01c7-4028-90dd-d1212fa20c93)](https://docs.binance.us/#general-rest-api-information) I suggest you forward your issue...

As soon as support for US market gets added to the `go-binance` library we can add it to voltra. Feel free to try and contribute the feature to the library...

> Does anyone know what cause this issue and how to fix it? It's because of the transition from Tailwind v3 to v4. The `tailwindcss-animate` package used by shadcn components...