How can I apply a class to fi-fo-field-wrp?

have a grid, and I'm supplying extra attributes, but it's going to the parent grid (obviously) and if I apply the extra attributes to the toggle , it only applies them to the button itself.

I want the Toggle to be aligned all the way to the right. If I add flex flex-end to the div.fi-fo-field-wrp , then I can accomplish this. Or perhaps there's a built in way to do it that I'm missing?
 Grid::make()->columns(2)->schema([
                Radio::make('task_filter'),
                Toggle::make('show_completed')
            ])->extraAttributes(['class' => '??'])
Was this page helpful?