Customize Media Attachment's ActionSheet

Hello!

How can I change item’s textColors for the following actionsheet?

Hi,

Please use actionSheetTextColor in SBUTheme to change the text color.

Hello @J_sung_0o0, thank you for the reply!
I’ve tried to change the properties from SBUComponentTheme but the changes are not reflecting. Here’s the code snippet:

let componentTheme = SBUComponentTheme(
        actionSheetTextColor: .red, // just for testing
        actionSheetItemColor: .red, // just for testing
        titleFont: Typography.bodyPrimary().font()
)
    
SBUTheme.componentTheme = componentTheme

But is not working. Is it right?