I am creating a Library Component which acts as a pop up from my PowerApp Canvas Screen to show a few details based on the selected item from the Canvas Screen Gallery .
My Library Component has a Gallery (with containers) and the Items to this are set using a Custom Property which is of Type Table
Table( {
Column1: "Column1Result",
Column2: "Column2Result",
Column3: "Column3Result",
Column4: "Column4Result",
Column5: "Column5Result",
})
Once my Library Component is included in the Canvas App , the selected item is collected to a collection
ClearCollect(
currentItem,
{
Column1: LookUp(Table1, ThisItem.PropertyName = 'Table2').ColumnName
Column2: LookUp(Table1, ThisItem.PropertyName = 'Table2').ColumnName,
Column3: LookUp(Table1, ThisItem.Property = 'Table2').ColumnName,
Column4: LookUp(Table1, ThisItem.Property = 'Table2').ColumnName,
Column5: LookUp(Table1, ThisItem.Property = 'Table2').ColumnName
}
)
And the currentItem is set as the Property to the Component
Unfortunately , my data is kind of mixed up and is not being set properly
I have enabled the Retired feature in the App settings as well

Any ideas are appreciated!