localizeDynamicAsFlow

fun LocalDate.localizeDynamicAsFlow(options: DynamicLocalDateOptions, locale: PlatformLocale = getDefaultLocale(), clock: Clock = Clock.System): Flow<String>(source)

Localizes this LocalDate dynamically (either absolute or relative to clock) with the given options in the given locale, returning a Flow that automatically receives new localizations as they are needed.

See also


fun YearMonth.localizeDynamicAsFlow(options: DynamicYearMonthOptions, locale: PlatformLocale = getDefaultLocale(), clock: Clock = Clock.System): Flow<String>(source)

Localizes this YearMonth dynamically (either absolute or relative to clock) with the given options in the given locale, returning a Flow that automatically receives new localizations as they are needed.

See also