Justin Eltoft
Justin Eltoft
Yea, I'm having the same issue. The --data-urlencode isn't being converted on the web tool. Example input: curl -i -XPOST http://localhost:8086/query --data-urlencode "q=CREATE DATABASE mydb" It looks like if I...
I agree, tried center and expand around the AnimatedSplash() but no luck so far. UPDATE: ah, I see. My image needed to be saved without the full "page" size in...
I have this problem when I open a soft keyboard on another page. I'm using another page to enter user info (name, phone etc). The moment the soft keyboard is...
I moved to using a different pdf lib unfortunately. @sahmirzali . For my situation I got this one for the free community license: syncfusion_flutter_pdfviewer: ^18.4.42-beta
Sounds good. Let me know. I did submit that one line change for http package from dev dependency to dependency, just in case that was safer, since it did give...
I've been checking if any of the [APIs](https://docs.espressif.com/projects/esp-idf/en/stable/esp32s2/api-reference/peripherals/touch_pad.html) help. I tried: - meas = touch_pad_meas_is_done(); - status = touch_pad_get_status(); - touch_pad_clear_status(); - touch_pad_io_init(TOUCH_PAD_NUM1); - touch_pad_io_init(TOUCH_PAD_NUM2); When it's working, the get_status...
Maybe a slightly different question. I also don't see a great way to know for sure they touch sensor is locked up. Does anyone have a direct way to query...
UPDATE: so I am exploring the code more. I tried setState() to see if redraw helps. Nope. I tried printing out the list length when opening the expansion and it...
Thans for the replies. So itemExtent is an incompatible feature with ExpansionTile it would seem. Unfortunately, in my app I have 2000 list items, so scrolling isn't very good if...
I'm using a listview builder. So setting it to null would set it to always null which defeats the purpose I added it for. I added it because I had...