I am developing an app in Teams - power app.
Want to disable the submit button till the mandatory field is not filled.
Tried to control it via Dataverse table, by selecting Colum Required property to : Business required.
But seems it has no effect, may be updated the property later
Therefore, trying to control it via, So if the field is not filled/Blank, the submit button will remain disabled.
Below is my code and error image on the screen,
If(
IsBlank(DataCardValue1.Value) || IsBlank(DataCardValue1.Value), DisplayMode = DisplayMode.Disabled, DisplayMode = DisplayMode.Edit)

pls. guide correction