@edymac2
To use the Flow from your Canvas App, you need to go to Power Automate --> Add Flow --> select your Flow from the List.

Then, while still in your Canvas App, type in the name of the Flow in the formula bar while in your button control's OnSelect property, select the name of the Flow that shows up, then press a dot, then type in Run, then an open parenthesis ( and then if you set up inputs in the Flow, pass them in, if not, pass in nothing ).
If you use the return value you may want to wrap it in Set function such as
Set(gloVariableName,YourFlowName.Run(...any inputs here...))
otherwise if not using the return value at all, don't do this, and just use
YourFlowName.Run(...any inputs here...)
See if it helps @edymac2