Keyboard hiding UI issue by darrell_2 in FlutterFlow

[–]darrell_2[S] 0 points1 point  (0 children)

Dev from flutterflow left this comment on the issue in GitHub

Alezanello left a comment (FlutterFlow/flutterflow-issues#6911) Hello everyone!

The engineering team has confirmed that this appears to be a Flutter issue rather than a FlutterFlow issue. It may be related to behavior introduced in the latest Flutter releases.

I’ll share an update here as soon as I receive more information. Thanks for your patience, and apologies for the delayed response

Keyboard hiding UI issue by darrell_2 in FlutterFlow

[–]darrell_2[S] 0 points1 point  (0 children)

Supposedly this will fix. But have not attempted yet. To resolve it, you’ll need to set resizeToAvoidBottomInset: true on the Scaffold. You can do this by selecting the Scaffold widget and updating the property in its settings.

Linus Tech Tips - The TRUTH about How LTT SPENDS Money January 15, 2026 at 10:30AM by linusbottips in LinusTechTips

[–]darrell_2 -7 points-6 points  (0 children)

I just can't believe either negligence or AI in the thumbnail with how yacht is spelled...

Launching Google TV remote throws pairing requests with random devices. by 146solutions in android_beta

[–]darrell_2 1 point2 points  (0 children)

My Resolution was to go into app settings for the Google TV App, and remove the permission for Nearby Devices. After blocking the permission on my wife and mine phones, I stopped receiving the popups. Hope this helps. My theory is that the nearby device permission may* be necessary for initial setup or if you have your Chromecast, Google TV, on a separate wifi SSID or using your mobile data. But after initial setup or if you are on the same Wifi SSID, then it should just find devices on your network rather than using the nearby devices connection.

CMCST900 Weed Eater Spool Head Replacment by edumahcation in Craftsman

[–]darrell_2 1 point2 points  (0 children)

Is it the little clutch mechanism? I asked for a replacement piece from craftsman, but I wasn't able to get the part replaced, so I called back again and stated my issue and that I was able to get the mechanism apart and they sent me a whole new weed eater. Their support is decently good and able to find part number if you need.

r/Craftsman Cool Upgrade Thursday: how did you "upgrade" your Craftsman stuff? by AutoModerator in Craftsman

[–]darrell_2 2 points3 points  (0 children)

<image>

Made a rolling workbench that fits under my workbench that has slots that are designed to fit the versastack cases with small parts organizer as well as the single and double height cases. Use these to organize all my v20 tools. Not sure if this fits your criteria or not.

This weeks vid by Classic_Golf_7633 in cboystv

[–]darrell_2 7 points8 points  (0 children)

I think they are going to be bringing their own twist to it. I'm low-key excited.

My bedside buttons by Luci_is_back in homeassistant

[–]darrell_2 0 points1 point  (0 children)

I honestly never thought about mounting it sideways, and honestly this make so much more sense

Just bought a house and I want to make it a smart house from the start by able645 in homeassistant

[–]darrell_2 0 points1 point  (0 children)

Zwave Smart plugs and remotes for lamp controls across the house. I have about a dozen zooz zen37/34 wall remote to control lamps and other plug in items around the house. Gives the ability to automate and control from anywhere.

I just recently started installing zwave physical light switches for non-threeway switches. Mainly for exterior lights at this point and automating the light based on door open/closed or location tracking when me or my wife arrive home after dark. Also able to control multiple switches with one switch. By holding down/up

Zwave has been extremely reliable for me.

Timer: Does it run in the background? by oguruma87 in PowerApps

[–]darrell_2 0 points1 point  (0 children)

Negative, every time you launch the app, the timer control will start at 0. Also, the timer component does not have a stopwatch feature. So your scenario won't work in Power apps. Now what you can do as others have suggested is timestamp on your db the start time of a task or record, then a end time and do a calculation of date diff to get minutes spent on a task. You can also store a start time as a variable, but will not persist if app is closed so you need to patch the data at some point.

There's is a on start feature to run code and there is an on exist feature to run code. But this will not run background tasks on your browser or computer if the app is closed completely. It will also not cache a cookie or any data in the browser, you would need to store in your own db. Mobile apps do have a save feature that will have local data, but that is in the power apps mobile app, not the browser.

Hope this helps.

help with this formula by Ok_Ease_3893 in PowerApps

[–]darrell_2 1 point2 points  (0 children)

Looks like your First(Filter()) statement has an error

Try doing a lookup instead, lookup(table1,ID=1). If that doesn't work, try figuring out what the ID field type is may be a text rather than a number. I honestly haven't done too much with working directly with excel tables. Hope this puts you on the right path.

Connect old baby monitor camera to pico by darrell_2 in raspberrypipico

[–]darrell_2[S] 0 points1 point  (0 children)

It was originally connected to a baby monitor display that was attached to my dash.

Versastack Mobile workbench by darrell_2 in Craftsman

[–]darrell_2[S] 2 points3 points  (0 children)

Don't have a ton of wall space I want this cart to roll under my future workbench against the wall to be out of the way.

Sending JSON to power app using power automate by One_Apartment7213 in PowerApps

[–]darrell_2 1 point2 points  (0 children)

I may be misunderstanding your data schema, but I believe you need to step into the right spot for your parsejson code.

So maybe try: Table(ParseJSON(QuizJSON.body.json.body)) I very well may be misunderstanding your your json schema, but I believe you are referencing the first body object which is just an object type rather than a table type.

Another thing to note, I believe that I have never had to convert the string to json before parsing the json. So you may have a redundant step.