Stack component does not seem to respect `alignment`
In my table component I've used a
SplitSplit and StackStack and set the alignmentalignment of the stack to BetweenBetween. But when I look at the output the justify-startjustify-start is still used? return $table
->columns([
Split::make([
Tables\Columns\TextColumn::make('title')
->searchable()
->sortable(),
Stack::make([
Tables\Columns\ImageColumn::make('author.image')
->grow(false)
->label('Afbeelding'),
Tables\Columns\TextColumn::make('author.name')
->label('Auteur')
->grow(false)
->searchable()
->sortable(),
])->alignment(Alignment::Between)->space(2),
Tables\Columns\TextColumn::make('published_at')
->label('Publicatiedatum')
->searchable()
->sortable(),
]),
]) return $table
->columns([
Split::make([
Tables\Columns\TextColumn::make('title')
->searchable()
->sortable(),
Stack::make([
Tables\Columns\ImageColumn::make('author.image')
->grow(false)
->label('Afbeelding'),
Tables\Columns\TextColumn::make('author.name')
->label('Auteur')
->grow(false)
->searchable()
->sortable(),
])->alignment(Alignment::Between)->space(2),
Tables\Columns\TextColumn::make('published_at')
->label('Publicatiedatum')
->searchable()
->sortable(),
]),
])