[SalesForce] Launch lightning Component from Related List Button

I'm just coming around to learning more about developing in lightning. still going through trailheads and whatnot. However, I can't seem to find how to do a few things.

  1. How can I override the new button on a related list in lightning?
  2. If I can't override, how can I add new buttons there and remove the standard new button
  3. How can I launch a lightning component from a relatedlist button? (I see I can still launch a visualforce page but nothing on lightning components)

Is there a trailhead on any of these topics, perhaps?

Best Answer

As far as I know, your best bet here is still to use Visualforce and just surface lightning through that page.

<apex:page standardController="ChildObject__c" recordSetVar="children">
    <!-- include lightning here -->
</apex:page>