[SalesForce] How to override standard button on standard objects like Contact with a Flow

I am trying to launch a flow from the standard new button on the contact,
I know we could override standard buttons with Visualforce and lightning components but is there any way to override to launch a flow

Best Answer

By Default, You can override the lightning Interface button with Vf Page and Lightning Component. If you have flow and want to override the button with a flow:-

  1. You can create a lightning component where you do call your flow on load.
  2. You can create a new custom button on contact record using flow.
  3. Or you can create a url button that launches flow

enter image description here

enter image description here

Related Topic