OK @BennyCruger ,
You need a variable here to trigger it - I will use vDisable - call it whatever you want.
On the DisplayMode of the toggle
If(
vDisable && YourToggleName.Value=true,
DisplayMode.Disabled,
DisplayMode.Edit
)
On the OnVisible of the Screen
UpdateContext({vDisable:YourToggleName.Value})
This sets the Variable to the current value of the toggle - so if the toggle is true, it will immediately disable. If it is false, it will stay enabled. When you set the toggle the first time, vDisable will be false, so it can stay enabled until the screen is reentered.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.