localizeDynamicAsFlow

fun LocalDate.localizeDynamicAsFlow(options: DynamicLocalDateOptions = DynamicLocalDateOptions(), locale: PlatformLocale = getDefaultLocale(), clock: Flow<ClockWrapper> = SYSTEM_CLOCK, timeZone: Flow<TimeZone> = SYSTEM_TIMEZONE): Flow<String>

Localizes this LocalDate dynamically (either absolute or relative to clock @ timeZone) 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 = DynamicYearMonthOptions(), locale: PlatformLocale = getDefaultLocale(), clock: Flow<ClockWrapper> = SYSTEM_CLOCK, timeZone: Flow<TimeZone> = SYSTEM_TIMEZONE): Flow<String>

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

See also