StringResource
Represents a localized string resource with optional formatting arguments.
Use this for:
All user-facing static text
Error messages that should be localized
Labels, titles, descriptions
Any text that needs translation
Examples
// Simple string resource
UiText.StringResource(R.string.app_name)
// With single argument
UiText.StringResource(R.string.welcome_user, userName)
// With multiple arguments
UiText.StringResource(
R.string.items_count_format, // "%d of %d items"
currentCount,
totalCount
)Content copied to clipboard