Hi @kbashaw
To disable the button, place the below code to DisplayMode property of the button
If(IsBlank(Find(8,TextNumber.Text,1)),DisplayMode.Edit,DisplayMode.Disabled)
Now the issue is with the message. You can trigger it only when the User finishes typing using the OnChange property.
Here is code for OnChange
If(IsBlank(Find(8,TextNumber.Text,1)),"",Notify("Warning Message",NotificationType.Warning))
Another option is a label where in the Text property, You will place the:
If(IsBlank(Find(8,TextNumber.Text,1)),"","Warnning Massage")
Cause warning massage-like Notifications can be only triggered when text is submitted