function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Dhanalakshmi RaajasekarDhanalakshmi Raajasekar 

Hi!!

I have created a radio group in my LWC component name rekogGroup and I assigned an option for that radio group in js. Now I need an idea to pass my LWC - radio group selected value from LWC to Flow.
Here is my code: 
html: 

<lightning-radio-group name="rekogGroup"
                              label="Select the correct plate number:"
                              options={rekogOptions}
                              value={detailSelected}
                              required
                              onchange={handleValueChange}
                              type="button"></lightning-radio-group>
I need to pass this rekogGroup -selected value in lightning Flow and set that as the license plate disk
This there any idea please help me!! Thanks all.
PriyaPriya (Salesforce Developers) 
Hi Dhanalakshmi,

You will have to use lightning:availableForFlowScreens interface to a Lightning component to make it available for flow screens.

Hope this is helpful!

Regards,
Ranjan