Составьте материал 3

Создавайте пользовательские интерфейсы Jetpack Compose с компонентами Material Design 3 — следующим этапом развития Material Design. Material 3 включает в себя обновлённые темы и компоненты, а также функции персонализации Material You, такие как динамическая подсветка, и разработан для соответствия новому визуальному стилю и пользовательскому интерфейсу Android 12.
Последнее обновление Стабильный релиз Кандидат на релиз Бета-версия Альфа-релиз
8 октября 2025 г. 1.4.0 - - 1.5.0-альфа06

Структура

Compose — это комбинация из семи идентификаторов групп Maven в androidx . Каждая группа содержит определённый набор функций, каждый из которых сопровождается собственным набором заметок о выпуске.

В этой таблице объясняются группы и ссылки на каждый набор заметок о выпуске.

Группа Описание
compose.animation Создавайте анимацию в своих приложениях Jetpack Compose, чтобы обогатить пользовательский опыт.
compose.компилятор Преобразуйте функции @Composable и включите оптимизацию с помощью плагина компилятора Kotlin.
compose.foundation Создавайте приложения Jetpack Compose с помощью готовых строительных блоков и расширяйте базу для создания собственных элементов системы проектирования.
сочинить.материал Создавайте пользовательские интерфейсы Jetpack Compose с помощью готовых компонентов Material Design. Это высокоуровневая точка входа в Compose, предназначенная для предоставления компонентов, соответствующих описанным на сайте www.material.io.
compose.material3 Создавайте пользовательские интерфейсы Jetpack Compose с компонентами Material Design 3 — следующим этапом развития Material Design. Material 3 включает в себя обновлённые темы и компоненты, а также функции персонализации Material You, такие как динамическая подсветка, и разработан для соответствия новому визуальному стилю и пользовательскому интерфейсу Android 12.
compose.runtime Основные строительные блоки модели программирования Compose и управления состоянием, а также основная среда выполнения для целевого плагина компилятора Compose.
compose.ui Основные компоненты пользовательского интерфейса, необходимые для взаимодействия с устройством, включая макет, рисование и ввод.

Объявление зависимостей

Чтобы добавить зависимость от Compose, необходимо добавить репозиторий Google Maven в свой проект. Подробнее см. в репозитории Google Maven .

Добавьте зависимости для необходимых артефактов в файл build.gradle вашего приложения или модуля:

классный

dependencies {
    implementation "androidx.compose.material3:material3:1.4.0"
    implementation "androidx.compose.material3:material3-window-size-class:1.4.0"
    implementation "androidx.compose.material3:material3-adaptive-navigation-suite:1.5.0-alpha06"
}

android {
    buildFeatures {
        compose true
    }

    composeOptions {
        kotlinCompilerExtensionVersion = "1.1.1"
    }

    kotlinOptions {
        jvmTarget = "1.8"
    }
}

Котлин

dependencies {
    implementation("androidx.compose.material3:material3:1.4.0")
    implementation("androidx.compose.material3:material3-window-size-class:1.4.0")
    implementation("androidx.compose.material3:material3-adaptive-navigation-suite:1.5.0-alpha06")
}

android {
    buildFeatures {
        compose = true
    }

    composeOptions {
        kotlinCompilerExtensionVersion = "1.1.1"
    }

    kotlinOptions {
        jvmTarget = "1.8"
    }
}

Дополнительные сведения о зависимостях см. в разделе Добавление зависимостей сборки .

Обратная связь

Ваши отзывы помогают улучшить Jetpack. Сообщите нам, если вы обнаружите новые проблемы или у вас есть идеи по улучшению этой библиотеки. Пожалуйста, ознакомьтесь с уже существующими проблемами в этой библиотеке, прежде чем создавать новую. Вы можете проголосовать за существующую проблему, нажав на кнопку со звёздочкой.

Создать новый выпуск

Более подробную информацию см. в документации по системе отслеживания проблем .

Compose Material3 Common Version 1.0

Версия 1.0.0-альфа01

17 апреля 2024 г.

Выпущены androidx.compose.material3:material3-common:1.0.0-alpha01 , androidx.compose.material3:material3-common-android:1.0.0-alpha01 и androidx.compose.material3:material3-common-desktop:1.0.0-alpha01 . Версия 1.0.0-alpha01 содержит эти коммиты .

Новые функции

Компоненты без темы, которые можно использовать для создания компонентов Material Design:

Compose Material3 Adaptive Navigation Suite Version 1.0

Версия 1.0.0-альфа07

1 мая 2024 г.

Выпущены androidx.compose.material3:material3-adaptive-navigation-suite:1.0.0-alpha07 , androidx.compose.material3:material3-adaptive-navigation-suite-android:1.0.0-alpha07 и androidx.compose.material3:material3-adaptive-navigation-suite-desktop:1.0.0-alpha07 Версия 1.0.0-alpha07 содержит эти коммиты .

Изменения API

  • Сделать API навигационных пакетов неэкспериментальными ( If62af )

Исправления ошибок

  • Использовать вставки для контента по умолчанию ( 50266df )

Версия 1.0.0-альфа06

17 апреля 2024 г.

Выпущены androidx.compose.material3:material3-adaptive-navigation-suite:1.0.0-alpha06 , androidx.compose.material3:material3-adaptive-navigation-suite-android:1.0.0-alpha06 и androidx.compose.material3:material3-adaptive-navigation-suite-desktop:1.0.0-alpha06 Версия 1.0.0-alpha06 содержит эти коммиты .

Изменения API

  • Добавить containerColor и contentColor в NavigationSuiteScaffoldDefaults . ( I64e3a , b/331993720 )
  • Добавление функции itemColors в NavigationSuiteDefaults . ( Idf719 , b/328480012 )
  • Сделайте NavigationSuiteScope герметичным. ( Iefa57 )

Версия 1.0.0-альфа05

6 марта 2024 г.

Выпущены androidx.compose.material3:material3-adaptive-navigation-suite:1.0.0-alpha05 , androidx.compose.material3:material3-adaptive-navigation-suite-android:1.0.0-alpha05 и androidx.compose.material3:material3-adaptive-navigation-suite-desktop:1.0.0-alpha05 . Версия 1.0.0-alpha05 содержит эти коммиты .

Изменения API

  • Сделайте конструктор NavigationSuiteItemColors публичным. ( Ica83a , b/324886877 )

Версия 1.0.0-альфа04

21 февраля 2024 г.

Выпущены androidx.compose.material3:material3-adaptive-navigation-suite:1.0.0-alpha04 , androidx.compose.material3:material3-adaptive-navigation-suite-android:1.0.0-alpha04 и androidx.compose.material3:material3-adaptive-navigation-suite-desktop:1.0.0-alpha04 . Версия 1.0.0-alpha04 содержит эти коммиты.

Обновления зависимостей

  • Обновите адаптивные зависимости Material3 в соответствии с новыми путями модулей. ( Ibc421 )
  • Переход на использование версии классов размеров окон диспетчера окон. ( I3794d )

Версия 1.0.0-альфа03

7 февраля 2024 г.

Выпущены androidx.compose.material3:material3-adaptive-navigation-suite:1.0.0-alpha03 , androidx.compose.material3:material3-adaptive-navigation-suite-android:1.0.0-alpha03 и androidx.compose.material3:material3-adaptive-navigation-suite-desktop:1.0.0-alpha03 . Версия 1.0.0-alpha03 содержит эти коммиты.

Изменения API

  • Обновить имя пакета с navigation-suite на navigationsuite ( I7eff7 )
  • Компоненты Material3, предоставляющие MutableInteractionSource в своём API, были обновлены и теперь предоставляют MutableInteractionSource , допускающий значение NULL, который по умолчанию равен NULL. Семантических изменений здесь нет: передача NULL означает, что вы не хотите поднимать MutableInteractionSource , и он будет создан внутри компонента при необходимости. Изменение на NULL позволяет некоторым компонентам никогда не выделять MutableInteractionSource , а другим компонентам создавать экземпляр только по мере необходимости, что повышает производительность этих компонентов. Если вы не используете MutableInteractionSource , передаваемый этим компонентам, рекомендуется передавать NULL. Также рекомендуется внести аналогичные изменения в ваши собственные компоненты. ( I41abb , b/298048146 )

Версия 1.0.0-альфа02

13 декабря 2023 г.

Выпущены androidx.compose.material3:material3-adaptive-navigation-suite:1.0.0-alpha02 , androidx.compose.material3:material3-adaptive-navigation-suite-android:1.0.0-alpha02 и androidx.compose.material3:material3-adaptive-navigation-suite-desktop:1.0.0-alpha02 . Версия 1.0.0-alpha02 содержит эти коммиты.

Новые функции

Исправления ошибок

  • Исправлена ​​ошибка, из-за которой компонент навигации заполнял весь экран, если у корневой поверхности есть modifier.fillMaxSize . ( c9cf250 , b/312664933 )

Версия 1.0.0-альфа01

15 ноября 2023 г.

Выпущена androidx.compose.material3:material3-adaptive-navigation-suite:1.0.0-alpha01 . Версия 1.0.0-alpha01 содержит следующие коммиты.

Новые функции

Compose Material3 Adaptive Version 1.0

Версия 1.0.0-альфа06

7 февраля 2024 г.

Выпущены androidx.compose.material3:material3-adaptive:1.0.0-alpha06 , androidx.compose.material3:material3-adaptive-android:1.0.0-alpha06 и androidx.compose.material3:material3-adaptive-desktop:1.0.0-alpha06 . Версия 1.0.0-alpha06 содержит эти коммиты.

Новые функции

  • Добавлены дополнительные параметры поведения для обратной навигации ThreePaneScaffoldNavigator . ( I858aa )
  • Добавлен дополнительный контент пункта назначения в историю навигации. ( Ibd7e6 )

Версия 1.0.0-альфа05

24 января 2024 г.

Выпущены androidx.compose.material3:material3-adaptive:1.0.0-alpha05 , androidx.compose.material3:material3-adaptive-android:1.0.0-alpha05 и androidx.compose.material3:material3-adaptive-desktop:1.0.0-alpha05 . Версия 1.0.0-alpha05 содержит эти коммиты.

Новые функции

  • Поддержка учета истории при навигации по скаффолду и расчете значений ( I71d46 )

Версия 1.0.0-альфа04

10 января 2024 г.

Выпущены androidx.compose.material3:material3-adaptive:1.0.0-alpha04 , androidx.compose.material3:material3-adaptive-android:1.0.0-alpha04 и androidx.compose.material3:material3-adaptive-desktop:1.0.0-alpha04 . Версия 1.0.0-alpha04 содержит эти коммиты.

Новые функции

  • Добавлена ​​поддержка стыков в каркасах панелей ( I1b462 ).

Изменения API

  • Свойства границ шарнира перемещены в разделе «Осанка» в список информации о шарнире ( I24f90 ).

Исправления ошибок

  • Исправлена ​​ошибка, из-за которой AnimatedPane не перестраивался ( c3f573d ).

Версия 1.0.0-альфа03

13 декабря 2023 г.

Выпущены androidx.compose.material3:material3-adaptive:1.0.0-alpha03 , androidx.compose.material3:material3-adaptive-android:1.0.0-alpha03 и androidx.compose.material3:material3-adaptive-desktop:1.0.0-alpha03 . Версия 1.0.0-alpha03 содержит эти коммиты.

Изменения API

  • Измените роли scaffold на псевдонимы ThreePaneScaffoldRole . ( I65bd1 )
  • Создайте базовый класс для ролей scaffold ( I4784d )
  • Удалить ненужные параметры из содержимого AnimatedPane ( Ibc73b )
  • Переименовывает collectWindowSizeAsState и вместо этого возвращает необработанные значения ( I480f4 )

Версия 1.0.0-альфа02

29 ноября 2023 г.

Выпущены androidx.compose.material3:material3-adaptive:1.0.0-alpha02 , androidx.compose.material3:material3-adaptive-android:1.0.0-alpha02 и androidx.compose.material3:material3-adaptive-desktop:1.0.0-alpha02 . Версия 1.0.0-alpha02 содержит эти коммиты.

Изменения API

  • Разделить навигационные API от адаптивных интерфейсов построения API. ( Ic4045 )
  • Удалить класс GutterSize . ( I785b3 )

Исправления ошибок

  • Исправлено: панели не переключаются, если AnimatedPane не используется ( d88f181 )

Версия 1.0.0-альфа01

15 ноября 2023 г.

Выпущен androidx.compose.material3:material3-adaptive:1.0.0-alpha01 . Версия 1.0.0-alpha01 содержит следующие коммиты.

Новые функции

API адаптивных условий Material3:

API директив адаптивной панели Material3:

API-интерфейсы адаптивных панелей Material3:

Составьте Material3 Версия 1.5

Версия 1.5.0-альфа06

8 октября 2025 г.

Выпущен androidx.compose.material3:material3-*:1.5.0-alpha06 . Версия 1.5.0-alpha06 содержит следующие коммиты .

Изменения API

  • Добавлены цвета прокручиваемой области для AppBarWithSearch . Кроме того, цвет контейнера поля ввода в строке поиска теперь по умолчанию прозрачен. Цвет контейнера по умолчанию для самой строки поиска остался неизменным. ( I4fe32 )
  • Добавлен индикатор переполнения по умолчанию, который можно встроить в FloatingToolbar . ( I6a6f8 , b/415833723 )
  • Обновление isExpanded до isShowing для API меню в группе кнопок. ( I86309 , b/412419514 )
  • Обновлен initialIsExpanded до initialIsShowing и добавлен индикатор переполнения по умолчанию, который можно компоновать в ButtonGroupDefaults . ( I6e67c , b/412419514 )
  • Удалить функцию перетаскивания для изменения размера из общедоступной поверхности API ( Ic85ba , b/437953743 , b/442636084 )

Исправления ошибок

  • Исправлен порядок фокусировки клавиш навигации по клавиатуре, а также исправлен для RTL. ( Ibba27 , b/422220597 )
  • Исправлена ​​навигация по сетке выбора года в окне выбора даты с помощью клавиатуры. ( I02363 , b/422425720 , b/446814683 )
  • Исправлена ​​навигация с помощью клавиатуры для сетки выбора даты в полях выбора даты. ( I594ef , b/422220597 , b/422223115 )
  • Исправлена ​​проблема с фокусировкой клавиатуры на внеэкранной панели инструментов. ( I01a73 , b/422786812 )
  • Исправлена ​​навигация RangeSlider и Slider с помощью клавиатуры. ( Ib6bcf , b/424845268 , b/422942624 )

Версия 1.5.0-альфа04

10 сентября 2025 г.

Выпущен androidx.compose.material3:material3-*:1.5.0-alpha04 . Версия 1.5.0-alpha04 содержит следующие коммиты .

Новые функции

  • Добавлены перегрузки для компоновки Text , принимающие лямбда- ColorProducer , что позволяет эффективно изменять цвета, не запуская полную перекомпозицию. ( I9ff25 , b/407055128 )

Изменения API

  • Переименуйте Scrim() в LevitatedPaneScrim() и скройте свойства классов Levitated и Reflowed. ( I090e1 , b/427953101 )
  • Скрыть API calculatePosture() как внутреннее ( Ie7227 , b/424442112 )
  • Предоставьте PaneScaffoldHorizontalOrder как запечатанный общедоступный API ( Ia4ebe ).
  • Отметить API, связанные с размером и положением окна, как экспериментальные. ( I4ee96 )

Исправления ошибок

  • Исправлен порядок навигации с помощью клавиатуры, так что фокус переходит от кнопки «fab» к первому элементу наверху. ( Icaaa1 , b/422762939 )
  • Улучшена клавиатура Navigation Drawer a11y: на ящике больше нельзя сделать фокус, если он закрыт. Его можно закрыть с помощью клавиши Esc, а его содержимое получает фокус при открытии. ( Idb995 , b/422793544 , b/422793651 , b/422797424 )
  • Циферблат часов в окне выбора времени теперь реагирует на навигацию/ввод с клавиатуры. ( I9d5d9 , b/425710631 )
  • Использовать новый начальный якорь при изменении списка якорей расширения панели ( I91cd1 , b/438829477 )

Версия 1.5.0-альфа03

27 августа 2025 г.

Выпущен androidx.compose.material3:material3-*:1.5.0-alpha03 . Версия 1.5.0-alpha03 содержит следующие коммиты .

Изменение поведения

  • Размер флажка и цвета индикатора были скорректированы в соответствии со спецификацией. Для минимизации нарушения работы пользовательского интерфейса добавлен флаг isCheckboxStylingFixEnabled , облегчающий миграцию. Пожалуйста, включите его вручную в своих приложениях. Этот флаг будет удалён в будущей версии. ( I5bcd3 , b/304300693 )

Изменения API

  • Добавлен параметр contentPadding для TopAppBar ( Ia5fea )
  • Добавить переопределение компонента для каркаса навигационного набора ( I85312 )

Исправления ошибок

  • Параметр containerColor в TimePickerDialog теперь применяется правильно, позволяя настраивать цвет фона диалогового окна. ( I47f89 , b/403183883 )
  • Модальная панель навигации больше не теряет фокус при сворачивании и теперь закрывается в ответ на нажатие клавиши ESC. ( 4255257 )
  • Snackbar теперь правильный порядок фокусировки клавиатуры для кнопок действия и закрытия; кнопка закрытия также поддерживает отображение всплывающей подсказки. ( 11fa13d )

Версия 1.5.0-альфа02

13 августа 2025 г.

Выпущен androidx.compose.material3:material3-*:1.5.0-alpha02 . Версия 1.5.0-alpha02 содержит следующие коммиты .

Изменения API

  • В PullToRefreshDefaults переименовал shape в indicatorShape и containerColor в indicatorContainerColor , а также добавил indicatorMaxDistance для использования индикатора. ( Ib6cbe )
  • Удалить тег устаревания из PullToRefreshDefaults.indicatorColor ( Iaaee2 )
  • Добавлен AppBarWithSearch , заменяющий TopSearchBar и поддерживающий значки навигации/действий. ( I213a5 )

Исправления ошибок

  • Исправлена ​​ошибка, из-за которой обратное нажатие неправильно обновляло смещение ящика. ( I85624 , b/427778135 )
  • SwipeToDismissBox теперь возвращается к установленному targetValue , если других якорей нет. BottomSheetScaffold теперь возвращается к расширенному targetValue , если других якорей нет. ( I73d5e , b/428856426 )
  • Исправлен отступ кнопок в AlertDialog при вертикальном расположении. ( Ia2118 )
  • [FAB] Исправлена ​​ошибка, из-за которой FAB оставался кликабельным после того, как Modifier.animateFloatingActionButton скрывал его ( I8ea6c , b/430336834 ).
  • [Слайдер] Исправлена ​​навигация с помощью клавиатуры для слайдера ( I3a405 )

Версия 1.5.0-альфа01

30 июля 2025 г.

Выпущен androidx.compose.material3:material3-*:1.5.0-alpha01 . Версия 1.5.0-alpha01 содержит следующие коммиты .

Новые функции

  • Добавлен дополнительный поставщик позиционирования для всплывающих подсказок, чтобы разработчики могли управлять размещением подсказки над, под, слева или справа от якоря. Добавьте API, принимающий форму для курсора, чтобы можно было создавать больше пользовательских форм. ( Ie513c )

Изменения API

  • Методы TextFieldColors для расчета цветов компонентов на основе состояния теперь общедоступны. ( I03165 )
  • Аннотация «Приостановить» удалена из обратного вызова onDismiss . ( Ie3166 )
  • DatePickerState.getDisplayedMonth(): YearMonth? и DateRangePickerState.getDisplayedMonth(): YearMonth? были обновлены для возврата значения, не допускающего значение NULL. ( Ice09c , b/427952972 )
  • Удалите ModalWideNavigationRailDefaults , переместите его содержимое в WideNavigationRailDefaults и переименуйте его имена, связанные с формой. ( Ic5e61 )
  • Цвета WideNavigationRailItem и устаревшие функции копирования должны быть на уровне Hidden. ( Id7e82 )
  • Измените уровень устаревших API WideNavigationRail на «Предупреждение» и сделайте их экспериментальными. ( I89085 )

Исправления ошибок

  • Гарантирует, что DatePicker учитывает свою локаль при форматировании чисел. Ранее, если DatePicker был настроен на арабскую локаль, он мог неправильно отображать латинские цифры, если в локали устройства использовалась другая система исчисления. ( Iccf76 , b/432616196 )
  • Исправлена ​​ошибка LinearProgressIndicator , из-за которой индикатор остановки отображался некорректно в макетах с написанием справа налево. ( I0734c )
  • Разделитель PrimaryScrollableTabRow и SecondaryScrollableTabRow теперь расширяется на весь экран, даже если содержимое вкладки не доходит до конца экрана. ( Ic1e9c , b/261741384 )

Составьте Material3 Версия 1.4

Версия 1.4.0

24 сентября 2025 г.

Выпущен androidx.compose.material3:material3-*:1.4.0 . Версия 1.4.0 содержит следующие коммиты .

Важные изменения по сравнению с версией 1.3.0:

Объявления об изменениях в библиотеке

Библиотека androidx.compose.material.icons больше не рекомендуется для отображения значков Material в Compose, поскольку Material Symbols — это новый подход. Мы прекратили публиковать обновления для этой библиотеки, и она была удалена из последней версии Material 3. Вы по-прежнему можете вручную ссылаться на неё, если у вас пока нет возможности выполнить миграцию.

Вместо этого мы рекомендуем загрузить векторный XML-файл Drawable со вкладки Android по адресу https://fonts.google.com/icons, чтобы получить доступ к последним стилизованным значкам: Material Symbols.

Почему мы больше не рекомендуем эту библиотеку? Библиотека иконок («Material Icons») была заменена новым интерфейсом Material Symbols, и мы увидели, что эта библиотека может значительно ускорить сборку ваших приложений, поскольку включает в себя все необходимые иконки, которые могут не понадобиться.

Для получения дополнительной информации: https://developer.android.com/develop/ui/compose/graphics/images/material

Изменения поведения

  • Эта библиотека больше не добавляет зависимость от material-icons-core , поэтому, если ваш проект зависит от нее, вам придется явно добавить эту зависимость в файлы build.gradle[.kts]. ( I735ff , b/349894318 )

  • Цвет активной метки NavigationBarItem и NavigationRailItem изменяется с onSurface на вторичный с целью повышения удобства использования, цветовой контрастности и улучшения согласованности в системе ( Ibc297 ). Чтобы вернуться к предыдущему поведению, скопируйте цвета по умолчанию и измените selectedTextColor на MaterialTheme.colorScheme.onSurface .

  • Компоненты Material 3 теперь используют новую MotionScheme для определения своего движения. ( Ie0f93 )

  • Неопределенные круговые изменения движения индикатора хода ( I3c07e )

Новые компоненты Material Design 3

Улучшения существующих компонентов Material Design 3

  • Текст теперь поддерживает autoSize
  • Добавлены декораторы Material 3 для BasicTextField2
  • Добавлен API TimePickerDialog , который можно использовать для TimePicker , TimeInput или иметь переключаемую версию.
  • Новые API панели поиска:
    • Свернутые панели поиска и развернутые «представления» поиска теперь являются отдельными компонуемыми объектами:
    • SearchBar представляет собой панель поиска в свернутом состоянии.
    • ExpandedFullScreenSearchBar и ExpandedDockedSearchBar представляют панель поиска в развёрнутом состоянии. Они открываются в новом окне.
    • SearchBarState для управления состоянием строки поиска
  • Экспериментальные API переведены в стабильную версию!
  • Улучшения производительности

Версия 1.4.0-rc01

10 сентября 2025 г.

Выпущен androidx.compose.material3:material3-*:1.4.0-rc01 . Версия 1.4.0-rc01 содержит следующие коммиты .

Версия 1.4.0-beta03

27 августа 2025 г.

Выпущен androidx.compose.material3:material3-*:1.4.0-beta03 . Версия 1.4.0-beta03 содержит следующие коммиты .

Версия 1.4.0-beta02

13 августа 2025 г.

Выпущен androidx.compose.material3:material3-*:1.4.0-beta02 . Версия 1.4.0-beta02 содержит следующие коммиты .

Изменения зависимости

  • Удалить зависимость между graphics-shapes ( I219e0 , b/436230765 )

Изменения API

  • В PullToRefreshDefaults переименовал shape в indicatorShape и containerColor в indicatorContainerColor , а также добавил indicatorMaxDistance для использования индикатора. ( Ib6cbe )
  • Удалить тег устаревания из PullToRefreshDefaults.indicatorColor ( Iaaee2 )
  • BasicAlertDialogOverrideScope был случайно повышен до стабильной версии, а его экспериментальная аннотация была удалена в aosp/3701846 . Он отмечен как внутренний. Он останется общедоступным экспериментальным в версии 1.5.0-альфа ( I9182a ).

Исправления ошибок

  • Исправлена ​​ошибка, из-за которой обратное нажатие неправильно обновляло смещение ящика. ( I85624 , b/427778135 )

Версия 1.4.0-beta01

30 июля 2025 г.

Выпущен androidx.compose.material3:material3-*:1.4.0-beta01 . Версия 1.4.0-beta01 содержит следующие коммиты .

Критические изменения

  • Все публичные API, отмеченные тегами ExperimentalMaterial3ExpressiveApi или ExperimentalMaterial3ComponentOverrideApi , были удалены. Чтобы продолжить пользоваться этими функциями, перейдите на 1.5.0-alpha . ( Ie4ae0 )
  • Ожидайте, что следующие стабилизированные API pullToRefresh будут переименованы в следующем выпуске. ( Ib6cbe )

Новые функции

  • Tooltip теперь поддерживает пользовательскую форму и положение курсора (выше, ниже, слева или справа от якоря). ( Ie513c )

Изменения API

  • Аннотация «Приостановить» удалена из обратного вызова onDismiss . ( Ie3166 )
  • DatePickerState.getDisplayedMonth(): YearMonth? и DateRangePickerState.getDisplayedMonth(): YearMonth? были обновлены для возврата значения, не допускающего значение NULL. ( Ice09c , b/427952972 )
  • Удалите ModalWideNavigationRailDefaults , переместите его содержимое в WideNavigationRailDefaults и переименуйте его имена, связанные с формой. ( Ic5e61 )

Исправления ошибок

  • Гарантирует, что DatePicker учитывает свою локаль при форматировании чисел. Ранее, если DatePicker был настроен на арабскую локаль, он мог неправильно отображать латинские цифры, если в локали устройства использовалась другая система исчисления. ( Iccf76 , b/432616196 )
  • Исправлена ​​ошибка LinearProgressIndicator , из-за которой индикатор остановки отображался некорректно в макетах с написанием справа налево. ( I0734c )
  • Разделитель PrimaryScrollableTabRow и SecondaryScrollableTabRow теперь расширяется на весь экран, даже если содержимое вкладки не доходит до конца экрана. ( Ic1e9c , b/261741384 )

Версия 1.4.0-альфа18

16 июля 2025 г.

Выпущен androidx.compose.material3:material3-*:1.4.0-alpha18 . Версия 1.4.0-alpha18 содержит следующие коммиты .

Новые функции

  • ModalBottomSheetProperties теперь предоставляет возможность отключить dissolveRequest при щелчке по сетке. ( I8e715 )
  • Добавить поддержку trackCornerSize в Track RangeSlider . ( Iec529 )

Изменения API

  • Сделан railExpanded обязательным параметром для WideNavigationRailItem , добавлен modalContentColor для WideNavigationRailColors и перемещен WideNavigationRailDefaults.modalContainerShape в ModalWideNavigationRailDefaults.containerShape . ( Id60c5 )
  • Переместить новый параметр функции цветов WideNavigationRail на последний и объявить устаревшей старую функцию. ( Iac7f7 )
  • PullToRefresh теперь является стабильным API ( I18537 )
  • Обновления API DatePickers . Мы удалили конечную дату по умолчанию, равную null, для DateRangePicker и сделали её обязательной для передачи. Мы также уточнили использование даты в полночь по UTC в документации API и отметили последние методы получения и установки, использующие API java.time, как экспериментальные. ( I121b3 , b/427952972 )
  • Градуировка значка с tint: ColorProducer изменен на неэкспериментальный. ( Ia0133 )
  • Удалены экспериментальные аннотации из DatePicker , DateRangePicker и их поддерживающих состояний, классов и типов. ( I0e4e0 , b/391848485 )
  • Изменено значение фокусируемости по умолчанию на false для исправления фокуса a11y и добавлен параметр hasAction в TooltipBox . ( I62998 )
  • Выпускник экспериментальных API WideNavigationRail , ShortNavigationBar и NavigationItem . ( I3ca3c )
  • Удалите аннотации @ExperimentalMaterial3Api из некоторых верхних функций панели приложения, вспомогательных классов и объектов. ( I0a9b7 )

Версия 1.4.0-альфа17

2 июля 2025 г.

Выпущен androidx.compose.material3:material3-*:1.4.0-alpha17 . Версия 1.4.0-alpha17 содержит следующие коммиты .

Новые функции

  • Обновить анимацию группы кнопок, чтобы анимация достигала 75% от анимации при щелчке, а не при нажатии. ( 593942a , b/423596967 )

Исправления ошибок

  • Исправлена ​​ошибка, из-за которой элемент карусели в некоторых случаях мог превышать размер большого элемента при расчете макета, что приводило к обрезанию всего виджета. ( I1c3d7 , b/397489534 )
  • Исправлен пропуск beforeContentPadding при прокрутке каруселей с перекрывающимися начальными и конечными смещениями. ( c3d5f3a , b/420618979 )
  • Обновить включенное поведение SwipeToDismiss для наблюдения за установленным состоянием вместо текущего. Восстанавливает существующее поведение, при котором поведение привязки отключается только при установленном состоянии убранного компонента. ( 3844e07 , b/425006844 )
  • Всплывающее меню ExposedDropdownMenu теперь можно открыть с помощью клавиатуры. Также исправлено: меню теперь доступно с клавиатуры для редактируемого варианта. ( 46ead03 )

Версия 1.4.0-альфа16

18 июня 2025 г.

Выпущен androidx.compose.material3:material3-*:1.4.0-alpha16 . Версия 1.4.0-alpha16 содержит следующие коммиты .

Новые функции

  • Добавлен компонент карусели героев, выровненный по центру ( I6f6d3 ).

Изменения API

  • Реализовать XR-переопределение вертикальной панели инструментов ( Ia1604 )
  • Добавлены программные функции прокрутки в CarouselState ( I12f8e )
  • Добавить ComponentOverride для ModalWideNavigationRail ( I4f440 )
  • Добавить ComponentOverride для WideNavigationRail ( I6354f )
  • Создать ComponentOverride для HorizontalFloatingToolbar ( I51116 )
  • Создать ComponentOverride для ShortNavigationBar ( I30e24 )
  • Ссылки SwipeToDismissBoxState на confirmValueChange были признаны устаревшими. Вместо этого пользователям следует использовать функцию обратного вызова onDismissed API SwipeToDismissBox . ( Iee780 )
  • Добавлен параметр userScrollEnabled в составные элементы карусели. ( I1d4d2 )
  • currentItem карусели теперь можно наблюдать из CarouselState . ( Ie87e9 )

Исправления ошибок

  • Исправлена ​​ошибка, из-за которой произвольная фигура на FAB, переданная в FloatingToolbar , не применяла корректно свою тень. ( Icdcc9 , b/423336922 )
  • Все карусели теперь по умолчанию используют семантическую роль «Карусель». ( I7af12 )
  • Исправлено некорректное движение большого пальца при обновлении состояния ползунка через LaunchedEffect ( Id9f31 , b/302774166 ).

Версия 1.4.0-альфа15

20 мая 2025 г.

Выпущен androidx.compose.material3:material3-*:1.4.0-alpha15 . Версия 1.4.0-alpha15 содержит следующие коммиты .

Изменения API

  • Добавлена ​​локальная композиция MotionTheme.LocalMotionScheme . Это позволяет получить доступ к схеме движения темы из CompositionLocalConsumerModifierNodes с помощью currentValueOf(MotionTheme.LocalMotionScheme) . ( I014b1 )
  • Конструктор ColorScheme без фиксированных цветовых ролей устарел. Пожалуйста, перейдите на конструктор с фиксированными ролями. ( Iad0ee )
  • Компонент M3 Text теперь поддерживает TextAutoSize . ( I7f524 )
  • Добавить API для создания вариантов размера разделенной кнопки и добавить примеры. ( Ice30b )

Исправления ошибок

  • Исправлена ​​ошибка, из-за которой Snackbar и FloatingActionButton располагались некорректно при включении режима «от края до края». Scaffold теперь корректно применяет горизонтальные вставки к этим компонентам. ( Ib7c30 , b/244400727 )
  • Исправлено движение BottomSheet из полностью развёрнутого состояния в частично развёрнутое. BottomSheet теперь использует быстрый эффект MotionScheme при скрытии или свёртывании и пространственный эффект по умолчанию при развёртывании. ( Ifa46f , b/416063171 )
  • Конструктор ColorScheme без ролей контейнера поверхности отмечен как скрытый и больше не рекомендуется к использованию. ( Ia7237 )
  • Удалено требование CircularWavyProgressIndicator Size.minDimension > 0 , которое раньше приводило к возникновению исключения, для обеспечения большей гибкости. ( Ic9418 , b/377531195 )
  • Гиперссылки в Text(AnnotatedString) теперь по умолчанию имеют стиль Material. ( I78288 , b/339843816 )
  • Исправлена ​​ошибка, из-за которой функция toShape() в RoundedPolygon кэшировала Path, что приводило к возникновению проблемы при выполнении нескольких вызовов createOutline с разными размерами. ( I4026d )

Версия 1.4.0-альфа14

7 мая 2025 г.

Выпущен androidx.compose.material3:material3-*:1.4.0-alpha14 . Версия 1.4.0-alpha14 содержит следующие коммиты .

Изменения API

  • Добавлен новый компонуемый элемент AppBarColumn , работающий по тому же принципу, что и AppBarRow , но для содержимого, расположенного в столбце. ( Iaf6bd )
  • Добавлено максимальное количество элементов в AppBarRow . Это необходимо для корректной реализации спецификации материалов для верхних панелей приложений. ( I92ce4 )
  • Добавлен метод в TooltipScope для получения layoutCoordinates якоря. Метод drawCaret объявлен устаревшим, поскольку разработчики могут использовать этот новый метод для получения layoutCoordinates границ якоря и создания соответствующей фигуры, содержащей курсор. ( Ia2e12 , b/329470609 )
  • Добавлена ​​поддержка java.time для выбора даты: введены перегрузки rememberDatePickerState/rememberDateRangePickerState , которые принимают объекты java.time (например, начальные LocalDate и YearMonth ). Также добавлены функции расширения для объектов состояния для получения/установки значений с использованием таких типов, как LocalDate и YearMonth . Требуется API 26+ или десахаринг. ( I70f29 , b/266202516 , b/281859606 )
  • Добавить компонуемый CenteredTrack , позволяющий использовать Slider с дорожкой, начинающейся от центра. ( I5b1d6 )

Исправления ошибок

  • Улучшена производительность волнистых индикаторов прогресса: линейные типы теперь загружаются примерно на 8,5% быстрее и требуют примерно на 11% меньше выделений, в то время как циклические типы показывают существенное повышение скорости (примерно на 47%) и сокращение выделений примерно на 39%. ( I595d8 )

Версия 1.4.0-альфа13

23 апреля 2025 г.

Выпущен androidx.compose.material3:material3-*:1.4.0-alpha13 . Версия 1.4.0-alpha13 содержит следующие коммиты .

Изменения API

  • isAppearanceLightStatusBars и isAppearanceLightNavigationBars вновь представлены в ModalBottomSheetProperties как параметры, доступные только для Android. ( Id4bc0 )
  • Добавьте компонуемый объект AppBarRow , который обрабатывает переполнение элементами, выходящими за его границы. ( I742bd )
  • Обновлен API DatePicker и DateRangePicker для запроса фокуса при переключении в режим ввода даты. Мы заменили логический параметр requestFocus на необязательный параметр focusRequester , принимающий FocusRequester . ( I14b69 )
  • Удалить модификатор и источник взаимодействия из кликабельных и переключаемых элементов по умолчанию. Вместо этого оставить это в качестве детали реализации. ( I95ed6 )
  • Обновлен ButtonGroup для перехода в раскрывающееся меню, если кнопок слишком много и они не помещаются на экране. ( I7b88b )

Исправления ошибок

  • Bottomsheet теперь использует верхние отступы, если они меньше текущего смещения. Это позволяет пользователям задавать верхние отступы для расширенного поведения. BottomSheetDefaults.windowInsets теперь включает WindowInsets.safeDrawing.Top . ( I0ab67 , b/321877275 , b/336962418 , b/342093067 )
  • Включена анимация появления/исчезновения (затухание/скольжение) для начальных значков/аватаров и конечных значков чипов при их добавлении или удалении. Это в первую очередь полезно для выбираемых чипов (Фильтр, Ввод), но применимо в целом. ( I9af21 )
  • Исправлено неправильное поведение RTL-ползунка, вызванное LookaheadScope . ( Ieb152 , b/408118041 )
  • Исправлен сбой нижней AppBar , связанный с прокруткой при скрытом системном пользовательском интерфейсе. ( Ic6140 , b/405996228 )

Версия 1.4.0-альфа12

9 апреля 2025 г.

Выпущен androidx.compose.material3:material3-*:1.4.0-alpha12 . Версия 1.4.0-alpha12 содержит следующие коммиты .

Изменения API

  • Удалены параметры, специфичные для Android, из ModalBottomSheetProperties ( Iab97f , b/362539765 ).
  • Ввести функции перегрузки для размеров маркеров перетаскивания по умолчанию ( I0ed0d )
  • Добавить новые функции NavigationSuiteScaffold и NavigationSuiteScaffoldLayout для поддержки новых типов макетов и добавить поддержку необязательного основного содержимого действия. ( Ib262a , b/353144478 )
  • Устаревание Modifier.weight с параметром fill в ButtonGroup . Добавление версии без fill. ( Id32bb )
  • Переименуйте компоненты xSmall- и xLarge- IconButton по умолчанию, чтобы они отображались как extra . ( Ib6e0f )
  • Добавьте новые функции NavigationSuite , NavigationSuiteItem и NavigationSuiteColors для поддержки новых типов макетов. ( I203d6 )
  • Добавьте новые NavigationSuiteTypes и добавьте новую функцию navigationSuiteType , которая включает эти варианты макета ( If68f9 )

Исправления ошибок

  • ColorScheme.contentColorFor теперь сопоставляет surfaceDim с onSurface . ( I8891a )
  • Обновлена ​​реализация DateInputTextField для решения проблемы, из-за которой поле ввода не отражало программно установленную дату. ( I6c8d1 , b/401143451 )
  • Исправлен порядок фокусировки обратной связи для навигационной шины и широкой навигационной шины ( I6cf6f , b/407048224 ).

Версия 1.4.0-альфа11

26 марта 2025 г.

Выпущен androidx.compose.material3:material3-*:1.4.0-alpha11 . Версия 1.4.0-alpha11 содержит следующие коммиты .

Изменения API

  • Обновите регистр букв для компонуемых свойств в объектах по умолчанию для кнопок и переключателей. Добавьте методы в ToggleButtonDefaults и ButtonDefaults для рекомендуемых отступов, форм, размеров и интервалов между значками, а также стиля текста в зависимости от высоты контейнера. ( Iea69e )
  • Удалены устаревшие экспериментальные функции и константы из FloatingToolbar . ( I8f339 )
  • Компоненты фасада теперь имеют общий интерфейс и общедоступные конструкторы и свойства. ( Ibb172 )
  • Добавление модификатора animateWidth в ButtonGroupScope , который необходимо будет использовать с дочерними элементами группы кнопок для правильной анимации дочерних элементов. ( Ia3bb6 )

Исправления ошибок

  • Исправлен отступ плавающей панели инструментов для обеспечения визуального баланса при сворачивании и улучшенной гибкости для большего содержимого. ( I06c00 )

Версия 1.4.0-альфа10

12 марта 2025 г.

Выпущен androidx.compose.material3:material3-*:1.4.0-alpha10 . Версия 1.4.0-alpha10 содержит следующие коммиты .

Изменения API

  • TabRowDefaults.tabIndicatorOffset устарел и теперь рекомендуется использовать TabIndicatorScope.tabIndicatorOffset . ( Ib36b3 )
  • Исправлена ​​опечатка для отступа небольшого содержимого в настройках кнопок по умолчанию. ( I19bfe )
  • TabRow и ScrollableTabRow устарели в пользу их основных и дополнительных вариантов. Основные и дополнительные строки вкладок более производительны и соответствуют спецификации. ( I918e2 )
  • Добавлены rememberSliderState и rememberRangeSliderState . ( I8e384 )
  • Добавлен параметр shouldAutoSnap в SliderState для управления механизмом автоматической привязки. Его отключение может быть полезно для пользовательских анимаций. ( I07745 )
  • Минимальная ширина прокручиваемой строки вкладок теперь является параметром. Варианты основной и дополнительной строк вкладок больше не являются экспериментальными. ( If6f15 , b/226665301 )
  • Сделал класс ExitAlwaysFloatingToolbarScrollBehavior публичным, что позволяет создавать элементы без композиции. ( Ibf31c )

Версия 1.4.0-альфа09

26 февраля 2025 г.

Выпущен androidx.compose.material3:material3-*:1.4.0-alpha09 . Версия 1.4.0-alpha09 содержит следующие коммиты .

Изменения API

  • Переименовать поля настроек DragHandle в состоянии по умолчанию; разделить состояния нажатия и перетаскивания; сделать размеры по умолчанию общедоступными. ( I787b9 )
  • Обновления API TowRowsTopAppBar . Удалён параметр expanded лямбда-функции и добавлены отдельные параметры для высоты развёрнутого и свёрнутого элементов. ( Idd677 , b/306697446 , b/229134133 , b/268068946 )

Исправления ошибок

  • Нижние панели приложений теперь отслеживают службу сенсорного исследования (например, TalkBack ) и остаются видимыми, когда эта служба включена. ( I4b34d )

Версия 1.4.0-альфа08

12 февраля 2025 г.

Выпущен androidx.compose.material3:material3-*:1.4.0-alpha08 . Версия 1.4.0-alpha08 содержит следующие коммиты .

Новые функции

  • Добавлен API TimePickerDialog , который можно использовать для TimePicker , TimeInput или для переключения версии. ( Id2d83 )

  • Новые API панели поиска:

    • Свернутые панели поиска и развернутые «представления» поиска теперь являются отдельными компонуемыми элементами.
    • SearchBar представляет собой панель поиска в свернутом состоянии.
    • ExpandedFullScreenSearchBar и ExpandedDockedSearchBar представляют панель поиска в развёрнутом состоянии. Они открываются в новом окне.
    • SearchBarState для управления состоянием строки поиска
    • TopSearchBar для добавления обработки вставок и поведения прокрутки
    • Новая перегрузка InputField , которая использует SearchBarState ( Ie0723 , b/261496232 , b/283311462 , b/350916229 , b/352872248 )

Изменения API

  • Поддержка изменения формы углов кнопок-значков при нажатии. ( I21843 )
  • API декоратора/блока оформления текстовых полей больше не являются экспериментальными. ( I31d95 )
  • Добавлены образцы и значения по умолчанию для подключенного варианта ButtonGroup . ( I5c8ce )
  • Сделайте параметр состояния последним в NavigationSuiteScaffold и NavigationSuiteScaffoldLayout . ( I9cc7b )

Исправления ошибок

  • Added custom accessibility actions to the FloatingToolbars so accessibility services can now expand or collapse all FloatingToolbar variations. The FAB-equipped version applies this to the FAB, while the FAB-less version applies it to the main content. ( I26420 )
  • The FloatingToolbars now observe the touch exploration service (eg, TalkBack) and keep the toolbar expanded and visible whenever the service is on. ( I02172 )
  • Fixed a crash at the progress and loading indicators in case a Float.NaN is passed in as a progress. ( I4fa96 , b/352364576 )

Версия 1.4.0-альфа07

29 января 2025 г.

androidx.compose.material3:material3-*:1.4.0-alpha07 is released. Version 1.4.0-alpha07 contains these commits .

Новые функции

  • Added more flexibility in customizing the appearance of Checkboxes with a new API. This API provides Stroke parameters that allow for greater control over how the checkmark and the checkbox-outline are rendered. ( I65a88 )
  • Added TwoRowsTopAppBar API, a more customizable alternative to Medium and Large app bars for creating two-row top app bars. Developers now have control over the content of titles and subtitles in both collapsed and expanded states, with customizable heights for each state. ( I0be3c , b/306697446 , b/229134133 , b/268068946 )

Изменения API

  • Renamed an experimental BottomAppBar variation to FlexibleBottomAppBar , providing more control over content arrangement and height. ( Iaa448 )
  • Update naming for properties in Button Group default object to be CapitalCase . Update the name of animateFraction to be more precise to the behavior that it's representing. ( I545cd )
  • Adding overloads for common buttons that allow for animated shapes on press interaction. Added cached button shapes. ( I5ec20 )
  • You can now control how a FloatingToolbar with FAB reacts to scrolling by providing a FloatingToolbarScrollBehavior . For toolbars positioned along a center edge (like top or bottom center), we recommend using a scroll behavior to hide the entire component on scroll for a cleaner look. This also prevents the FAB from becoming off-center, which could happen when using the expanded flag for collapsing. ( I33f67 )
  • Updates the experimental TopAppBar APIs to use Alignment.Horizontal instead of a custom TopAppBarTitleAlignment when setting the alignment of the title and subtitle. ( I70ca2 )
  • SliderState#onValueChange is now public to give more control to the user ( I104eb )
  • Introduce NavigationSuiteScaffoldState to allow for animation of the navigation component. Also introduce overloads of NavigationSuiteScaffold and NavigationSuiteScaffoldLayout that have a state param. ( I6a8c9 , b/328674235 )

Исправления ошибок

  • Move IconButtonColors and IconToggleButtonColors classes from IconButtonDefaults.kt back to IconButton.kt . ( I3c233 )

External Contribution

  • SliderState#isDragging is now public. ( I8458a )

Версия 1.4.0-альфа06

15 января 2025 г.

androidx.compose.material3:material3-*:1.4.0-alpha06 is released. Version 1.4.0-alpha06 contains these commits .

Изменение поведения

  • Added displayCutout to the group of insets that Material components take into account by default, to avoid content overlapping with the display cutout. This is a behavior change that will impact how inset-aware components behave around a display cutout. This includes the default value of the WindowInsets parameter for inset-aware Material 3 components, and the WindowInsets values provided in the component Defaults objects for both Material 2 and Material 3. If this change causes undesirable behavior, manually specify the WindowInsets parameter on a per-component basis. ( I43ee9 , b/362508045 )

Изменения API

  • Updates to the TopAppBar API. Rename the medium and large top app bars with a subtitle to *FlexibleTopAppBar . Unified the color variations into a single TopAppBarDefault.topAppBarColors() function, and added a subtitle color parameter to be applied for a provided subtitle Composable ( I41b65 )
  • Remove WideNavigationRailArrangement API in favor of Arrangement.Vertical ( Id0341 )
  • Add a new VerticalSlider @Composable . ( I2bfba )
  • Add a new Track @Composable that allows specifying custom external track corners and track icons. ( I436a4 )
  • Update the floating toolbar APIs to use the FloatingToolbarColors object instead of a single container color. ( I9a054 )
  • Add and use new experimental annotation ExperimentalMaterial3ComponentOverrideApi ( Ia1eaf )
  • Modifier.indicatorLine now takes a shape for the text field to handle clipping. ( I8c5f3 , b/380704151 )
  • Rename the experimental FloatingAppBar functions to FloatingToolbar ( I1dbf8 )
  • Added a new floatingToolbarVerticalNestedScroll that can be attached to a scrollable container to update the floating toolbar expansion state based on a scroll motion that crosses a threshold. ( I6d65f )
  • Introducing a new API for creating a floating toolbar with an attached Floating Action Button (FAB). The API provides flexible customization options, allowing you to arrange the toolbar horizontally or vertically and place the FAB at the start or end of the toolbar. ( I9e350 )

Исправления ошибок

  • Fix a Snackbar accessibility issue that caused it to announce itself on dismiss when TalkBack is on. ( /I9db53 )

External Contribution

  • Commonized BasicTooltip in foundation and BasicTooltip/Tooltip in material3. ( Ifc2e6 )

Версия 1.4.0-альфа05

12 декабря 2024 г.

androidx.compose.material3:material3-*:1.4.0-alpha05 is released. Version 1.4.0-alpha05 contains these commits .

Изменения API

  • Replace type in WideNavigationRailState.current/target value for an enum for better readability ( I2d6ab )
  • SplitButton change Shape api from data class to class for binary compatibility. ( I53812 )
  • Added a tooltip API that has a onDismissRequest parameter so makers can decide what happens when a user clicks outside of the tooltip. Deprecated the old API that doesn't contain this new parameter. ( I99aef )
  • Change naming of opticalCentering to horizontalCenterOptically . Making the modifier internal. Replace padding parameter with max start and end offset. ( I0b904 )
  • Change WideNavigationRailState to have current/target value, remove enums in favor of boolean. ( Idfa29 , b/356039090 )
  • Add NavigationBarItemComponentOverride . ( I3a06a )

Исправления ошибок

  • Fix the top and bottom app-bar behaviors to reliably change color when content is scrolled all the way. ( Idc4e8 , b/293665988 )
  • Scroll behavior functions for top and bottom app bars now return a remembered behavior to perform better across recompositions. ( I0fdbe , b/207957336 )
  • Modifier pararemeter is now applied after internal modifiers such as dragging behavior and semantics, instead of before. This affects the ordering in which modifiers are applied. ( I8d83f )
  • Expanded bottom sheet remains expanded on size change. ( I2870b , b/324934884 )
  • Correctly route status and navigation bar flags for windows properties. ( Ie674d , b/362539765 )
  • Move modifier parameter to the scaffolds root, as documented. This aligns implementation with M2. ( I0235e , b/372311595 )

External Contribution

  • Commonized DatePickerDialog function. ( I7dced )

Версия 1.4.0-альфа04

13 ноября 2024 г.

androidx.compose.material3:material3-*:1.4.0-alpha04 is released. Version 1.4.0-alpha04 contains these commits .

Изменения поведения

  • Revert color changes introduced in aosp/3212478 to iconButtonColors , iconToggleButtonColors , outlinedIconButtonColors , outlinedIconToggleButtonColors and outlinedIconToggleButtonBorder . Moved the now-reverted behavior into a new set of functions called iconButtonVibrantColors and so forth to emphasize the high contrast colors being returned. ( Iffd8d )

Новые функции

  • Introduce VerticalDragHandle component ( I6c770 )

Изменения API

  • Rename DismissibleModalWideNavigationRailDefaults to ModalWideNavigationRailDefaults . ( I8e877 )
  • Add NavigationBarComponentOverrides . ( I8a3f3 )
  • Add NavigationRailComponentOverride . ( I83e13 )
  • Introduce WideNavigationRailState to handle collapsing/expanding of the rail, allow ModalWideNavigationRail to be dismissible and delete DismissibleModalWideNavigationRail . ( I88568 )
  • Add xSmall, medium, large, and xLarge size defaults into toggle button defaults. ( Ie95d1 )
  • Add xSmall, medium, large, and xLarge size defaults into button defaults. ( If8b6d )

Исправления ошибок

  • Filter chip trailing icon color has been updated from Primary to OnSurfaceContainer , per spec. All chip outline colors have been updated from Outline to Outline Variant, per spec. ( I68bd4 )

Версия 1.4.0-альфа03

30 октября 2024 г.

androidx.compose.material3:material3-*:1.4.0-alpha03 is released. Version 1.4.0-alpha03 contains these commits .

Изменения API

  • SheetState constructor with density has been deprecated in favor of positional and velocity thresholds. ( Ifd16e )
  • Added rememberTooltipPositionProvider that contains an updated positioning logic. Deprecated rememberPlainTooltipPositionProvider and rememberRichTooltipPositionProvider . ( Ie66e2 )
  • Additional ModalBottomSheetProperties allow for customization of status and navigation bar colors. By default, these update based on content color instead of system dark theme status. ( Ib874e , b/362539765 )
  • Improved the input experience for date pickers: when in input mode, the date text field will be focused for immediate text entry. The change adds a requestFocus parameter to the DatePicker and the DateRangePicker . You may prevent a focus by passing false . ( I12d09 , b/286399710 , b/340102743 )
  • Caching the shape defaults into the Shape object. Making the shape defaults @Composable for toggle button. Collapsing the shapes into one shape default since the variants point to the same token file. ( Iaa014 )

Исправления ошибок

  • Optimize Scaffold contentPadding behavior to avoid always recomposing the body content when the contentPadding changes. ( I8c8e2 , b/373904168 )
  • TextFieldLabelScope progress renamed to labelMinimizedProgress
  • TextFieldLabelPosition Default renamed to Attached . Interface members have been removed. ( If75c6 )
  • Fixed an issue with the DatePicker in input mode where validation errors could cause the component's height to change. ( I2e229 , b/280462363 )
  • Make the material Slider change its value when control keys are pressed. ( I1c442 )

Версия 1.4.0-альфа02

16 октября 2024 г.

androidx.compose.material3:material3-*:1.4.0-alpha02 is released. Version 1.4.0-alpha02 contains these commits .

Изменения API

  • Updates to the date pickers to ensure consistent Locale usage throughout the DatePicker and DateRangePicker when setting a Locale directly through a DatePickerState or a DateRangePickerState . Note that when setting Locales directly to the state, it's up to you to ensure that the title and headline texts are localized accordingly, as their default text will still be applied according to the default platform Locale. ( I37073 , b/326490763 , b/321657276 )
  • SheetState.isAnimationRunning is now exposed. ( I9a3d7 )
  • DatePickerColors now correctly take precedence over any conflicting colors defined at the theme's Typography text styles. Also note that this update adjusts the color parameter's position in the date picker functions and introduces a contentColor parameter for customizing the header and title text colors. ( I30d03 , b/347031394 )
  • Rename SplitButton to SplitButtonLayout and remove SplitButton color variants APIs, variants will be achieve by re-using button variants provided by SplitButtonDefaults . ( I44c36 )
  • ModalBottomSheet now has sheetGestureEnabled parameter ( I856cb , b/288211587 )
  • Renamed the standardMotionScheme and the expressiveMotionScheme to standard and expressive. Both functions are now accessible through the MotionScheme companion object by calling MotionScheme.standard() and MotionScheme.expressive() . ( Iceccf )
  • Adding maxWidth parameter to plain and rich tooltips. It defaults to the design spec of 200 dp for plain tooltips and 320 dp for rich tooltips. ( I30ce9 )

Исправления ошибок

  • The DatePicker and DateRangePicker now correctly update the displayed month when set via their state's displayedMonthMillis . ( If9e47 , b/333414302 )
  • ModalBottomSheet content now moves content away from status bar. ( I5114c , b/321877275 , b/336962418 , b/342093067 )
  • [Bottom Sheet] Change back callback priority to PRIORITY_DEFAULT to allow IME keyboard to dismiss first. ( I447fb )
  • Fix crashes in the DatePicker and DateRangePicker when the minimum selectable year is set to a future year. ( I78656 , b/319395747 )
  • Fix a date-picker issue to update the UI when an updated SelectableDates instance is applied. ( Iad59a , b/290135807 , b/339898760 )

Версия 1.4.0-альфа01

2 октября 2024 г.

androidx.compose.material3:material3-*:1.4.0-alpha01 is released. Version 1.4.0-alpha01 contains these commits .

Изменения поведения

  • Library no longer adds a dependency to material-icons-core so if your project relied on that, you will have to explicitly add that dependency in your build.gradle[.kts] files. ( I735ff , b/349894318 )
  • NavigationBarItem and NavigationRailItem 's active label color change from onSurface to secondary in order to improve usability, color contrast and improve coherence within the system ( Ibc297 ), to revert to the previous behavior, copy the default colors and change the selectedTextColor to MaterialTheme.colorScheme.onSurface .
  • Material 3 components are now using the new MotionScheme to define their motion. ( Ie0f93 )
  • Indeterminate circular Progress Indicator motion changes ( I3c07e )
  • Update OutlinedIconButtonColors and OutlinedIconToggleButtonColors for better color contrast. ( I2743d )
  • Updated container and content color for FilledIconToggleButtonColors and FilledTonalIconToggleButtonColors . ( Ic5d0f )
  • Updated OutlinedButton border color from outline to outlineVariant . ( 057f00 )

Изменения API

  • Added an optional reverseLayout parameter to the TopAppBar 's enterAlwaysScrollBehavior function to better support content that was set with a reverseLayout . ( I4e0e5 )
  • SegmentedButton now supports contentPadding argument. ( I5ad91 , b/358414376 )
  • PullToRefreshState does no longer have default implementation for isAnimating ( I6a593 )
  • Added new overloads of Material TextField and OutlinedTextField that use TextFieldState . Added decoration box APIs that are compatible with TextFieldDecorator . ( If13a1 )
  • Added parameter to control text field's labelPosition . Using alwaysMinimize allows the UI pattern of displaying a label and placeholder in a text field at the same time even when the field is unfocused. ( I1ef2c )
  • Added Material SecureTextField and OutlinedSecureTextField for password entry fields. ( I7e22d )
  • Added a scope to text field labels to query animation progress. ( If5ec8 )
  • Adds support for MotionEvent.CLASSIFICATION_DEEP_PRESS to tooltips. ( I62e6a )
  • TimePickerState 's isAfternoon is now an extension val instead of a var in the interface, renamed to isPm ( I89a97 )
  • Updating typography class to support emphasized type scales. ( Ifa13c )
  • Added ModalWideNavigationRail API and renamed ModalExpandedNavigationRail APIs to DismissibleModalWideNavigationRail . ( Ic9118 )
  • Updated FloatingAppBarScrollBehavior to auto-calculate the screenOffset and not require a @Composable . ( Idf349 )
  • Updates to the LoadingIndicator API to fix the naming at its defaults object. Added a LoadingIndicatorElevation constant at the PullToRefresh . ( I1d72b )
  • Updates to the LoadingIndicator API to fix the naming at its defaults object. Added a LoadingIndicatorElevation constant at the PullToRefresh . ( I1d72b )
  • Added an amplitude and a waveSpeed parameters to the indeterminate variations of the LinearWavyProgressIndicator and the CircularWavyProgressIndicator . ( I2a0c5 )
  • Support changing an icon toggle button's shape based on its pressed or checked state. ( Ibc781 )
  • Updating typography class to support emphasized type scales. ( Ifa13c )
  • SplitButton shape morphs based on default / pressed state. Removed AnimatedTrailingButton api because TrailingButton api can offer the same customizations ( I95066 )
  • Add modifier to animate showing and hiding of FAB, eg when content scrolls. ( I8338d )
  • Adding connected button group shapes and spacing to ButtonGroupDefaults to be used in a sample. ( I68e30 )
  • Split button add horizontal padding for trailing button and enable optical centering calculated from start and end corner differences ( I122e2 )
  • Introducing a new Material MotionScheme to allow setting a scheme for the component's motion. The scheme is set through the MaterialTheme . ( Id50c2 )

Исправления ошибок

  • Apply the correct focus traversal index to Scaffold child Composables. The order is topBar , bottomBar , fab, content, snackbar. ( I5936b )
  • Fixed an issue at the DatePicker and DateRangePicker where in certain locales and format-skeletons some of the date elements (eg month names) did not start with a capital letter. ( I1430f )
  • Integrate FAB and FAB Menu component tokens (minor visual updates to paddings and text) ( Ib57f3 )
  • ModalBottomSheet is now first in semantic traversal order, followed by the scrim. ( I436f9 , b/358594665 )
  • Fix bottom app bar not disappearing entirely when scrolling under the navigation pill in edge to edge mode ( I3ee21 )

Составьте Material3 Версия 1.3

Версия 1.3.2

9 апреля 2025 г.

androidx.compose.material3:material3-*:1.3.2 is released. Version 1.3.2 contains these commits .

Исправления ошибок

  • ListItem corrects its intrinsic height calculation, now reserving the appropriate amount of space in Layout.
  • Remove excess NavigationBarItem label padding, correctly aligning with spec.
  • Corrects TabRow Layout in RTL mode.

Версия 1.3.1

30 октября 2024 г.

androidx.compose.material3:material3-*:1.3.1 is released. Version 1.3.1 contains these commits .

Исправления ошибок

  • The DatePicker and DateRangePicker now correctly update the displayed month when set via their state's displayedMonthMillis . ( If9e47 , b/333414302 )
  • Fix crashes in the DatePicker and DateRangePicker when the minimum selectable year is set to a future year. ( I78656 , b/319395747 )
  • Fix a date-picker issue to update the UI when an updated SelectableDates instance is applied. ( Iad59a , b/290135807 , b/339898760 )
  • Change back callback priority used by bottom sheets to PRIORITY_DEFAULT to allow IME keyboard to dismiss first. ( I447fb )

Версия 1.3.0

4 сентября 2024 г.

androidx.compose.material3:material3-*:1.3.0 is released. Version 1.3.0 contains these commits .

Важные изменения с версии 1.2.0

Major features of 1.3.0

New Material Design 3 components

  • Карусель
  • [ ModalBottomSheet ] now supports Predictive Back on U+ ( Iccf32 , b/281967264 , b/304850357 )
  • [ SearchBar ] now supports Predictive Back on U+ ( I657f8 )
  • Nav Drawer ( ModalDrawerSheet and DismissibleDrawerSheet ) now supports Predictive Back on U+ as opt-in ( Ie5b0b )
  • DropdownMenu now supports custom color, shape, elevation, and border. ( I8e981 , b/289554448 , b/301887035 , b/283654243 )
  • Updated Slider to improve accessibility by adding a gap and stop indicator. ( I3058e )
  • Updated ProgressIndicator to improve accessibility by adding a gap and stop indicator. ( I21451 )
  • Added a default caret for rich tooltip, support custom caret to be drawn given anchor LayoutCoordinates . ( Ifd42c ) Breaking Changes
  • New pull-to-refresh APIs:
    • Simplified PullToRefreshState to use fractional values instead of Dp units.
    • isRefreshing state is controlled by the user instead of PullToRefreshState .
    • Separated out the nested scroll connection from PullToRefreshState . It is handled by the new PullToRefreshBox or Modifier.pullToRefresh .
    • This update is a breaking change to previous experimental APIs. ( I0adeb , b/314496282 , b/317177684 , b/323787138 , b/324573502 , b/317177683 ) Visual Breaking Changes
  • Update focus state overlay to be 0.1f to ensure sufficient color contrast. ( I7ea77 )
  • Small adjustments to surface and background color defaults in lightColorScheme and darkColorScheme . ( I9db52 )
  • Updated Slider and ProgressIndicator colors to follow the new Non-Text Contrast specs. ( I26807 )
  • SurfaceContainer variants are now used by components. Components which formally calculated color with Surface and TonalElevation now use SurfaceContainer roles by default, which are not affected by tonal elevation. ( b/304584161 )
  • Surface and Surface container baseline roles have been slightly adjusted, providing more tint in light and dark themes. ( I677a5 )
  • Promoted experimental APIs to stable!
  • Улучшения производительности

Версия 1.3.0-rc01

21 августа 2024 г.

androidx.compose.material3:material3-*:1.3.0-rc01 is released. Version 1.3.0-rc01 contains these commits .

Исправления ошибок

  • ModalBottomSheet is now first in semantic traversal order, followed by the scrim. ( I436f9 , b/358594665 )

Версия 1.3.0-beta05

24 июля 2024 г.

androidx.compose.material3:material3-*:1.3.0-beta05 is released. Version 1.3.0-beta05 contains these commits .

  • Fixed issue where BottomSheet content is missing or cut off on Android N and O ( a10a2d )
  • Increased slider's semantics bounds in order for TalkBack to properly show the focus indicators around the thumbs. ( 0b5a1d )

Версия 1.3.0-beta04

26 июня 2024 г.

androidx.compose.material3:material3-*:1.3.0-beta04 is released. Version 1.3.0-beta04 contains these commits .

Версия 1.3.0-beta03

12 июня 2024 г.

androidx.compose.material3:material3-*:1.3.0-beta03 is released. Version 1.3.0-beta03 contains these commits .

External Contribution

  • Make androidx.compose.material3.DropdownMenu available from common source set. ( If62c0 )

Версия 1.3.0-beta02

29 мая 2024 г.

androidx.compose.material3:material3-*:1.3.0-beta02 is released. Version 1.3.0-beta02 contains these commits .

Изменения API

  • Modifier.pullToRefreshIndicator supports elevation, update Pull To Refresh APIs to have enabled be a boolean, instead of a lambda. Support content alignment in PullToRefreshBox ( I75679 )
  • Making TooltipScope a sealed interface and creating an internal implementation to use in TooltipBox and Label. ( I3833e )
  • Added two new modifiers to CarouselItemScope - maskClip and maskBorder - to easily add a shape and border to any carousel item ( Id67a1 )
  • TimePickerState is now an interface and allows for setting the time ( I88546 )
  • Updated API for styling the links: moved the TextLinkStyles to the TextStyle and removed the TextDefaults from material. ( I5477b )

Исправления ошибок

  • ModalBottomSheet status and nav bar icons now respond to dark theme status. ( Ie1fe7 , b/338342149 )
  • Added close sheet semantics to ModalBottomSheet scrim. ( 0e61cb , b/328801864 )

External Contribution

  • Make androidx.compose.material3.AlertDialog available from common source set ( Ia33f5 )
  • Make ModalBottomSheet available from common source set ( Id7cc7 )

Версия 1.3.0-beta01

14 мая 2024 г.

androidx.compose.material3:material3-*:1.3.0-beta01 is released. Version 1.3.0-beta01 contains these commits .

Изменения API

  • Using DpSize instead of CaretProperties . Removing CaretProperties . Rename CaretScope to TooltipScope . ( Id9a76 )
  • Updated the API for getting Material themed links in text. Specifically, removed the methods from the TextDefaults for constructing themed LinkAnnotations and parse HTML with themed links. Instead, added a TextLinkStyles class that allows to style the links as a parameter to the Text composable. ( I31b93 )

Версия 1.3.0-альфа06

1 мая 2024 г.

androidx.compose.material3:material3-*:1.3.0-alpha06 is released. Version 1.3.0-alpha06 contains these commits .

Критические изменения

  • New pull-to-refresh APIs:

    • Simplified PullToRefreshState to use fractional values instead of Dp units.
    • isRefreshing state is controlled by the user instead of PullToRefreshState .
    • Separated out the nested scroll connection from PullToRefreshState . It is handled by the new PullToRefreshBox or Modifier.pullToRefresh .
    • This update is a breaking change to previous experimental APIs. ( I0adeb , b/314496282 , b/317177684 , b/323787138 , b/324573502 , b/317177683 )

Изменения API

  • RippleConfiguration#isEnabled has been removed, and LocalRippleConfiguration has been made nullable. To disable a ripple, instead of providing a RippleConfiguration with isEnabled = false , provide null to LocalRippleConfiguration . ( I22725 )
  • ModalBottomSheet more accurately draws scrim over status bar when edge to edge is enabled. Modal bottom sheet content can now consume window insets, allowing for visible content above the navigation bar. ModalBottomSheet parameter windowInsets renamed to contentWindowInsets to specify where the insets will be applied, these are no longer tied to window logic. contentWindowInsets type has been changed to a function which returns WindowInsets , to allow it to be resolved within its new window. ( I39630 , b/274872542 , b/300280229 , b/290893168 )
  • PrimaryScrollableTabRow and SecondaryScrollableTabRow now use custom layout instead of subcomposition, which should improve performance. ( I991e0 )
  • Text links got pressed state styling option in addition to normal styling, hovered and focused. TextDefaults methods each got a pressedStyle argument to support that. ( Ic473f , b/139312671 )

Исправления ошибок

  • Navigation drawer drag anchors now match the drawerContent 's width. ( Ibc72f , b/245355396 )
  • OutlinedTextField top padding for label now accounts for system font size. ( Idc781 )
  • Fixed package location of CalendarLocale . ( Ifa235 )
  • [Predictive Back] Update predictive back animations to use interpolation curve of (0.1, 0.1, 0, 1) ( I2591a )

Версия 1.3.0-альфа05

17 апреля 2024 г.

androidx.compose.material3:material3-*:1.3.0-alpha05 is released. Version 1.3.0-alpha05 contains these commits .

Новые функции

  • SearchBar and DockedSearchBar have new overloads that take a text field parameter. This allows styling the text field separately from the rest of the search bar as well as passing in custom text fields. The text field of the current implementation has been made available as SearchBarDefaults.InputField . ( I50c73 , b/275074248 , b/278773336 , b/326627700 )
  • the lambda drawTick has been added to the public API in order to customize the ticks if needed ( I0c048 )

Изменения API

  • Text links got pressed state styling option in addition to normal styling, hovered and focused ( I5f864 , b/139312671 )
  • Updated CarouselItemInfo to expose a mask Rect that the item is being clipped by ( I785d8 )
  • Removed BasicTooltipState from the Material 3 public API. Its functionality is combined with TooltipState until Foundation's BasicTooltip is stabilized. ( Icda29 )
  • Added a TextDefaults object that contains methods to construct a LinkAnnotation and parse HTML-tagged string which apply MaterialTheme to the links ( I98532 , b/139312671 )
  • ExposedDropdownMenuBoxScope no longer permits subclasses. Exposed dropdown menus now have a MenuAnchorType which should be passed to menuAnchor to support better a11y. This should be used instead of passing focusable to ExposedDropdownMenu , which is now deprecated. menuAnchor has a new parameter to control enabled state. ( I55ee6 , b/257209915 , b/308840226 )
  • Fixed the border color of OutlinedButton when disabled. Added ButtonDefaults.outlinedButtonBorder("enabled") overload that takes the enabled state. ( Ie650b , b/318461363 )
  • Added a new CarouselItemInfo class to help clients get information about the item sizes. ( I9070c )
  • ColorScheme constructor without surface containers is now deprecated. Please migrate to the constructor that includes surface containers. ( I35c11 )
  • [Outlined] TextFieldDefaults ContainerBox renamed to Container . ( Ie8d3b )

Исправления ошибок

  • BottomSheetScaffold will no longer scroll from nested scroll if sheetSwipeEnabled is false. ( I5e1c1 , b/306464779 )
  • Removed some ExperimentalMaterial3Api OptIn annotation in IconButtonSamples.kt . ( I111d1 )

Версия 1.3.0-альфа04

3 апреля 2024 г.

androidx.compose.material3:material3-*:1.3.0-alpha04 is released. Version 1.3.0-alpha04 contains these commits .

Новые функции

  • Added two experimental versions of the Material3 Carousel - HorizontalMultiBrowseCarousel and HorizontalUncontainedCarousel ( I88d64 )
  • Updated Compose M3 Nav Drawer ( ModalDrawerSheet and DismissibleDrawerSheet ) to support Predictive Back on U+ as opt-in ( Ie5b0b )
  • Added a new API in Icon to allow passing color tint as lambda to avoid recomposing. ( I5b5a2 )
  • Top app bar APIs now support custom heights for both fixed and collapsible sections. ( Ib8b0c , b/323403446 )

Изменения API

  • Top app bar APIs now support custom heights for both fixed and collapsible sections. Fixed an issue that caused single-line top app bars to recompose too many times when scrolling content. Resolved an issue where MediumTopAppBar truncated titles on devices with large font/display settings. ( Ib8b0c , b/323403446 , b/300953236 , b/286296147 , b/330410290 , b/308540676 )
  • SegmentedButton and associated APIs are now stable ( I8a158 )
  • SwipeToDismissBox , SwipeToDismissBoxDefaults , SwipeToDismissBoxState and SwipeToDismissBoxValue are now marked stable. ( I5f000 )
  • Removed deprecated DismissDirection and DismissValue enums and APIs. ( I89ccd )
  • Added an experimental tag to Carousel's CarouselState companion object. ( I94154 )
  • Deprecate LocalMinimumInteractiveComponentEnforcement and introduced LocalMinimumInteractiveComponentSize to replace it. ( I7a7ac )
  • SearchBarColors constructor is now public. ( I769ca )
  • Added a gesturesEnabled parameter to SwipeToDismissBox . ( Idc59f , b/324170119 )
  • Removed text field APIs that were marked as deprecated and experimental. ( I1305f )

Версия 1.3.0-альфа03

20 марта 2024 г.

androidx.compose.material3:material3-*:1.3.0-alpha03 is released. Version 1.3.0-alpha03 contains these commits .

Visual Breaking Changes

  • Update focus state overlay to be 0.1f to ensure sufficient color contrast. ( I7ea77 )
  • Small adjustments to surface and background color defaults in lightColorScheme and darkColorScheme . ( I9db52 )

Новые функции

  • Added parameters to customize ExposedDropdownMenu . In particular, menus now have a focusable parameter (default true ) that should be set to false when working with editable text fields. ( I4184c , b/323694447 , b/278609042 )

Изменения API

  • The ScaffoldSubcomposeInMeasureFix flag has been removed. ( Ie2a4b )
  • NavigationRailItemColors is now marked as @Immutable . ( If6112 , b/327660613 )
  • NavigationBarItemColors is now marked as @Immutable . ( I42a30 , b/298064514 )
  • Reorder params in Slider Track composable. ( I9f315 )
  • ExposedDropdownMenu is now implemented using Popup . The behavior should be the same except focusable menus with editable text fields may be dismissed when typing on the keyboard.

Исправления ошибок

  • Surface and Surface container baseline roles have been slightly adjusted, providing more tint in light and dark themes. ( I677a5 )
  • Updated Slider and ProgressIndicator colors to follow the new Non-Text Contrast specs. ( I26807 )
  • Update focus state overlay to be 0.1f to ensure sufficient color contrast. ( I7ea77 )
  • Small adjustments to surface and background color defaults in lightColorScheme and darkColorScheme . ( I9db52 )

Версия 1.3.0-альфа02

6 марта 2024 г.

androidx.compose.material3:material3-*:1.3.0-alpha02 is released. Version 1.3.0-alpha02 contains these commits .

Изменения API

  • Making the slider states stable again. Making State.onValueChangeFinished a val again. Wrapping onValueChangeFinished in a rememberUpdatedState . ( I82ab2 , b/322269951 )
  • The Navigation components now use the new SurfaceContainer roles. DrawerDefaults now provides distinct standardContainerColor and modalContainerColor attributes. DrawerDefaults.ModalDrawerElevation is now 0.dp . ( I7fbac )
  • Removing @Stable from the states of Slider since we're changing state.onValueChangeFinished to a var . ( Ied34a , b/322269951 )
  • ModalBottomSheet and StandardBottomSheet animation spec is now a TweenSpec , updated from a spring animation. This resolves an issue with a visible overshoot. Deprecated SheetState constructors without density have now been removed. ( I7babc , b/285847707 )

Исправления ошибок

  • SurfaceContainer variants are now used by components. Components which formally calculated color with Surface and TonalElevation now use SurfaceContainer roles by default, which are not affected by tonal elevation. ( b/304584161 )
  • Fixed bug that caused ElevatedFilterChip 's unselected, disabled container color to be black. ( I400e6 , b/322407043 )
  • Fix indeterminate progress indicator when the progress is 0 ( Id6582 )
  • Fixed an issue with Slider and RangeSlider on RTL layout ( Iab0e1 )
  • Adding SliderRangeTolerance for the slider range calculation since Float rounding can be inaccurate. ( Ic918a , b/324934900 )
  • Ensure that the DatePickerDialog displays its buttons when nesting a DateRangePicker or when displaying any type of date picker on small screens with larger fonts. ( Ie4758 , b/325107799 , b/277768544 )
  • Menu now leverages the SurfaceContainer role for container color. MenuDefaults.TonalElevation is now 0.dp . ( I135b7 )
  • TextField now leverages the SurfaceContainerHighest role for container color. ( I4dced )
  • Elevated chips now leverage the SurfaceContainerLow role ( I7cd2f )
  • DatePicker container color is now SurfaceContainerHigh . DatePickerDefaults.TonalElevation is now 0.dp . ( Ida753 )
  • Updates Bottom Sheets container color and drag handle color. ( I72a0a )
  • RichTooltip container color is now SurfaceContainer . ( Ia8b45 )
  • SearchBar container color is now SurfaceContainerHighest . SearchBarDefaults.TonalElevation is now 0.dp . ( I88604 )
  • Updates switch disabled and unselected tracks/icons to leverage the SurfaceContainerHighest color role. ( I7687a )
  • AlertDialog container color is now SurfaceContainerHigh . ( Ie0433 )
  • BottomAppBar container color is now SurfaceContainer . TopAppBar onScroll color is now SurfaceContainer . ( I41630 )
  • ElevatedCard container color is now SurfaceContainerLow . FilledCard 's container color of SurfaceContainerHighest . ( I35141 )
  • ElevatedButton container color is now SurfaceContainerLow . FilledIconButton 's when unselected now have a container color of SurfaceContainerHighest . ( I792c9 )
  • Updates TimePicker container color and clock dial color role to SurfaceContainerHighest . ( I43b93 )

Версия 1.3.0-альфа01

21 февраля 2024 г.

androidx.compose.material3:material3-*:1.3.0-alpha01 is released. Version 1.3.0-alpha01 contains these commits.

Новые функции

  • Update Compose M3 ModalBottomSheet to support Predictive Back on U+ ( Iccf32 , b/281967264 , b/304850357 )
  • Updated Compose M3 SearchBar to support Predictive Back on U+ ( I657f8 )
  • Updated Slider to improve accessibility by adding a gap and stop indicator. ( I3058e )
  • Updated ProgressIndicator to improve accessibility by adding a gap and stop indicator. ( I21451 )
  • Adding a default caret for rich tooltip, new rich tooltip API now allows for custom caret to be drawn given anchor LayoutCoordinates . ( Ifd42c )

Изменения поведения

  • Material components have been migrated to use the new ripple APIs, and no longer query RippleTheme .

Изменения API

  • The fun drawStopIndicator is now public. ( I3f59f )
  • Mark the DatePicker 's formatWithSkeleton function as internal ( Ic65dc )
  • DropdownMenu now supports custom color, shape, elevation, and border. ( I8e981 , b/289554448 , b/301887035 , b/283654243 )
  • Material3 components exposing a MutableInteractionSource in their API have been updated to now expose a nullable MutableInteractionSource that defaults to null . There are no semantic changes here: passing null means that you do not wish to hoist the MutableInteractionSource , and it will be created inside the component if needed. Changing to null allows for some components to never allocate a MutableInteractionSource , and allows for other components to only lazily create an instance when they need to, which improves performance across these components. If you are not using the MutableInteractionSource you pass to these components, it is recommended that you pass null instead. It is also recommended that you make similar changes in your own components. ( I41abb , b/298048146 )
  • Adds RippleConfiguration and LocalRippleConfiguration to allow for per-component / sub-tree customization of ripples using fixed values. For example, to change the color of a component you don't control, or to disable a ripple for a component. In most cases the default values should be used: these APIs are an escape hatch for customization of individual components / limited sub-trees. For wider changes and custom design systems, you should instead build your own ripple using createRippleModifierNode . ( I7b5d6 , b/298048146 )
  • Adds new ripple API in material3 which replaces the deprecated rememberRipple . Also adds a temporary CompositionLocal , LocalUseFallbackRippleImplementation , to revert material3 components to using the deprecated rememberRipple / RippleTheme APIs. This will be removed in the next stable release, and is only intended to be a temporary migration aid for cases where you are providing a custom RippleTheme . ( I34cbc , b/298048146 )

Исправления ошибок

  • Removed subcomposition inside ModalBottomSheet to improve performance. Fixed an issue where ModalBottomSheet could crash in specific scenarios in combination with LookaheadScope . ( I2a198 )
  • Removed subcomposition inside BottomSheetScaffold to improve performance. Fixed an issue where BottomSheetScaffold would crash in specific scenarios in combination with LookaheadScope . ( Ie6401 )
  • The badge alignment is adjusted to be closer to the center of the anchor content in respect to the top-right corner. ( I18a28 )
  • Fix an a11y issue with the DateRangePicker where the Month-Year text title was conveyed as actionable to the screen reader, Switch access, and Voice access users. ( I2ac55 )
  • Fixed mediumTopAppBarColors param order bug. ( Ibe64a )

Версия 1.2

Версия 1.2.1

6 марта 2024 г.

androidx.compose.material3:material3-*:1.2.1 is released. Version 1.2.1 contains these commits .

Исправления ошибок

  • Make the Slider states stable again. Making State.onValueChangeFinished a val again. Wrapping onValueChangeFinished in a rememberUpdatedState . ( Ie8fd0 , b/322269951 )
  • Removing @Stable from the states of Slider since we're changing state.onValueChangeFinished to a var . ( I82ba1 , b/322269951 )
  • Fix NavigationBar custom colors to copy from defaults. ( 80a779 , b/326894020 )
  • Fix regression in ExposedDropdownMenu to make it focusable again ( 3fcec1 , b/323694447 )
  • Fix button color caching issue ( 3e5bbc b/327371655 )

Версия 1.2.0

7 февраля 2024 г.

androidx.compose.material3:material3-*:1.2.0 is released. Version 1.2.0 contains these commits.

Известная проблема

  • A View-Compose interop rendering bug was introduced in PrimaryTabRow as part of a performance improvement change. The workaround is to use TabRow with TabRowDefaults.PrimaryIndicator

Важные изменения с версии 1.1.0

New Material Design 3 Components

Enhancements to existing Material Design 3 components.

Promoted experimental APIs to stable!

Улучшения производительности

Версия 1.2.0-rc01

24 января 2024 г.

androidx.compose.material3:material3-*:1.2.0-rc01 is released. Version 1.2.0-rc01 contains these commits.

Исправления ошибок

  • Fixed mediumTopAppBarColors param order bug. ( Ibe64a )
  • Fixed a bug introduced in 1.2.0-beta02 in CardDefaults.cardColors that did not update contentColor based on the containerColor param value. ( Iee041 , b/319671246 )
  • Fixed a bug in disabledContentColor introduced in 1.2.0-beta02 and added small optimization. ( I6dda1 , b/318428829 )

Версия 1.2.0-beta02

10 января 2024 г.

androidx.compose.material3:material3-*:1.2.0-beta02 is released. Version 1.2.0-beta02 contains these commits.

Известная ошибка

  • A bug in IconButtonColors will by default assign disabledContentColor to an alpha (0.38f) of LocalContentColor instead of the user specified contentColor . The workaround is to explicitly set the disabledContentColor . This will be fixed in the next release.

Изменения API

  • Adding the capability to enable tooltip carets for Plain Tooltip APIs. ( Ibf767 )
  • SwipeToDismissState , rememberSwipeToDismiss and SwipeToDismissValue are all renamed to have _SwipeToDismissBox_ . ( I68d6d )

Исправления ошибок

  • Fixed ListItem end padding value to align with spec. ( Ibd68b , b/305342674 )
  • Outline color for outlined card is now correctly mapped to OutlineVariant . ( I75480 , b/310979715 )
  • Dynamic color now pulls from system defined color roles. This improves contrast for accessible content, and more closely aligns dynamic color to the Material spec. ( I1de96 )
  • Fixed ModalBottomSheet back handling on Android T/13+ when android:enableOnBackInvokedCallback="true" . ( I728dc , b/306196110 )

Версия 1.2.0-beta01

13 декабря 2023 г.

androidx.compose.material3:material3-*:1.2.0-beta01 is released. Version 1.2.0-beta01 contains these commits.

Изменения API

  • Mark TabIndicatorScope as experimental. ( I45c88 )
  • Removing deprecated experimental APIs for tooltip. ( I438cb )
  • Change new TabRow overloads to not use subcompositions. This results in a different way to build the TabRow indicators with custom modifiers provided. ( Ife741 )
  • Deprecate DismissDirection and DismissValue API's. These have been merged to SwipeToDismissValue , whose values indicate both position and direction of SwipeToDismissBox . DismissState.progress is now marked as a FloatRange between 0.0 and 1.0 . DismissState deprecated Saver and Constructor have now been removed. SwipeToDismiss component, state and defaults object have been remarked as experimental. ( Ib54f2 )

Исправления ошибок

  • The default indicator for PullToRefresh is now an open arrowhead instead of a solid triangle. ( I67be3 )

Версия 1.2.0-альфа12

29 ноября 2023 г.

androidx.compose.material3:material3-*:1.2.0-alpha12 is released. Version 1.2.0-alpha12 contains these commits.

Изменения API

  • RangeSlider now takes a Kotlin range (eg, 0f..1f ) instead of a custom FloatRange value class. SnapFlingBehavior.kt now also uses a Kotlin range. ( I025cb )
  • Mark Modifier factory functions as @Stable . ( Ib109f )

Версия 1.2.0-альфа11

15 ноября 2023 г.

androidx.compose.material3:material3-*:1.2.0-alpha11 is released. Version 1.2.0-alpha11 contains these commits.

Новые функции

  • Implements PullToRefreshContainer and PullToRefreshState , which together provide a pull to refresh implementation in Material3. ( I16456 , b/261760718 )

Изменения API

  • Mark the SwipeToDismissBox DismissDirection and DismissValue as experimental. ( I517b0 )
  • Rename SwipeToDismiss to SwipeToDismissBox . Rename background to backgroundContent and dismissContent to trailing content lambda. ( I7f4d3 )
  • Make the constructor for ChipElevation and SelectableChipElevation public. ( Ie0c48 , b/308432421 )
  • Adding ModalBottomSheetProperties . Moving securePolicy into ModalBottomSheetProperties . Adding isFocusable and shouldDismissOnBackPress to ModalBottomSheetProperties . These new booleans help determine how modal bottom sheet should handle IME events. ( Iea56f , b/278216859 )
  • Updated RangeSlider and Slider states to remove initialOnValueChange , the initial prefixes, and appropriate kdocs. ( I57d30 )
  • Deprecate ChipBorder class and its associated function calls, recommend using BorderStroke directly instead. ( I89cc2 )
  • Foundation Tooltip APIs are now @ExperimentalFoundationApi . ( I30b0b )
  • TabRow and ScrollableTabRow are no longer deprecated. The new Primary and Secondary variants are marked as experimental. ( I0def6 )
  • Filter and input chips now use BorderStroke directly. ( I07a8d )
  • SegmentedButton now uses BorderStroke directly. ( I89b9b )
  • Renamed the generic AlertDialog function to BasicAlertDialog , and deprecate the previous function. ( Idbe52 )
  • Rename SwipeToDismiss APIs to SwipeDismiss , and promote the new SwipeDismiss APIs to stable. ( I14cbe )
  • Adding tonalElevation and shadowElevation to tooltip APIs. Additionally, moving TooltipBox , PlainTooltip , and RichTooltip APIs back to experimental since they were accidentally released as stable. ( If0f66 , b/293939035 )
  • Promote experimental chip APIs to stable. ( Iea2c3 )
  • Removed the @ExperimentalMaterial3Api annotation from the Material3 clickable Cards. ( I88dbf )

Исправления ошибок

  • Fixed an issue where SwipeToDismiss would crash in certain scenarios with nested Lookahead and Lazy layouts. ( Ica8d1 , b/297226562 )

Версия 1.2.0-альфа10

18 октября 2023 г.

androidx.compose.material3:material3-*:1.2.0-alpha10 is released. Version 1.2.0-alpha10 contains these commits.

Изменения API

  • Promoting Badge and BadgedBox to stable. ( I67f16 , b/261565132 )
  • Adding securePolicy as a parameter to ModalBottomSheet , so users can define the behavior for WindowManager.LayoutParams.FLAG_SECURE . ( Icdac8 , b/296250262 )
  • Added new overloads of LinearProgressIndicator and CircularProgressIndicator that take progress as a lambda. These should be more performant than the previous versions. ( I824e6 , b/295616656 )
  • Renames StandardSizeClasses to AllSizeClasses . ( I8cb07 )
  • Combine calculation functions of window size classes. ( Iad935 )

Исправления ошибок

  • Fix a DatePicker crash when quickly clicking the navigation arrow buttons when the displayed month is at the edge of the allowed range of years. ( I46f36 , b/290954897 , b/297002119 )
  • [Nav rail/bar] Support transparent color for indicator. ( Ie0a9b , b/267289987 )

Версия 1.2.0-альфа09

4 октября 2023 г.

androidx.compose.material3:material3-*:1.2.0-alpha09 is released. Version 1.2.0-alpha09 contains these commits.

Изменения API

  • Migrated ModalNavigationDrawer and DismissibleNavigationDrawer to use new AnchoredDraggable APIs. DrawerState 's animateTo has been replaced by the open and close methods, and the offset is now exposed as a float instead of a state object. You can access the offset directly through currentOffset . ( I0a72c )
  • Non-Composable functions have been added for creating a DatePickerState and DateRangePickerState directly. These functions can be used as an alternative to the Composable rememberDatePickerState and rememberDateRangePickerState functions when needed. ( I70326 , b/291524052 )
  • Fixed and Scrollable TabRows now have Primary and Secondary variants. These correctly map to the color and indicator behavior as defined in Material3.
  • PrimaryScrollableTabRow and SecondaryScrollableTabRow now expose scroll state. ( Iec8f5 , b/260572337 )
  • Adding a new sheetMaxWidth parameter that developers can set to specify a maximum width that the sheet will span. Dp.Unspecified can be passed in for the parameter if a sheet that spans the entire screen width is desired. ( Ifb7c9 , b/266697696 )
  • Adding back PlainTooltipBox and RichTooltipBox APIs as deprecated methods. ( I246fa )

Исправления ошибок

  • Fix a crash when the DatePicker is initialized with a DatePickerFormatter that has certain date skeletons that stay the same when converted to date patterns (such as YY). ( I01f29 )

Версия 1.2.0-альфа08

20 сентября 2023 г.

androidx.compose.material3:material3-*:1.2.0-alpha08 is released. Version 1.2.0-alpha08 contains these commits.

Behavior Breaking Change

  • ColorScheme is now Immutable, making individual color updates less efficient, but making more common usage of colors more efficient. The reasoning behind this change is that the majority of apps wouldn't have updating individual colors as a main use case. This is still possible but it will recompose more than before, in turn we significantly decrease the amount of state subscriptions through all of Material code and will impact initialization and runtime cost of more standard use cases. ( Ic447d , b/297212873 )
  • Tonal Elevation no longer animates in different interaction states to match spec. ( Icdd12 )

Изменения API

  • Added a new BottomAppBar that takes as parameter a BottomAppBarScrollBehavior in order to auto-hide it when content is scrolled. Also added FabPosition.EndOverlay allowing the FAB to overlay the bottom app bar in the scaffold instead of being anchored above it. ( Iecb47 )
  • Added a simple Label component that builds on top of BasicTooltipBox that won't dismiss when tapping outside of the bounds of the label. ( I821f9 )

Исправления ошибок

  • Removed the use of rememberSaveable for tooltips. ( Icc131 , b/299500338 )
  • Introduced a temporary flag to control whether Scaffold should measure its children during measurement or during placement. By default, this will measure in measurement. If you are facing issues with the new behavior, please file an issue. ( I0b354 )
  • Fixed horizontal Edge to Edge in BottomSheet by using the correct measurement for device screen width. ( I1df0c , b/299058752 )
  • Fixed a bug where ModalBottomSheet was not calling onDismissedRequest when dismissing it by swiping down on the sheet. ( Idfdd8 )

Версия 1.2.0-альфа07

6 сентября 2023 г.

androidx.compose.material3:material3-*:1.2.0-alpha07 is released. Version 1.2.0-alpha07 contains these commits.

Новые функции

  • Auto-mirror icons support has been added in compose material 1.6.0-alpha05 , please see the release notes for details on auto-mirror icons.

Изменения API

  • SliderState implements DraggableState ( I9b116 )
  • Change shape to be a required param. Rename position to index in shape helper function. ( I34941 )
  • Updates the DatePicker formatWithSkeleton to include a map that is used as a cache for performance improvements. ( I3195f )
  • Added BasicTooltipBox to compose.foundation and updated PlainTooltipBox and RichTooltipBox to use TooltipBox with new PlainTooltip and RichTooltip composables. ( I79e1d )

Исправления ошибок

  • dynamicLightColorScheme and dynamicDarkColorScheme now return higher chroma colors for surface and surfaceContainer roles. ( I5e901 )
  • Fixed an issue where some components using Subcomposition (eg BottomSheetScaffold ) inside a Scaffold inside a LookaheadScope were attempting to read their size too early. ( I297b4 , I871f1 , b/295536718 )

Версия 1.2.0-альфа06

23 августа 2023 г.

androidx.compose.material3:material3-*:1.2.0-alpha06 is released. Version 1.2.0-alpha06 contains these commits.

Исправления ошибок

  • Fixed DropdownMenu 's offset calculation so x offsets depend solely on the local layout direction, and y offsets will no longer be reversed when the menu is near the bottom of the screen. ( Iccc74 , b/294103942 )
  • Fixed DropdownMenu 's offset calculation so x offsets depend solely on the local layout direction, and y offsets will no longer be reversed when the menu is near the bottom of the screen. ( Ib87a2 , b/294103942 )

Версия 1.2.0-альфа05

9 августа 2023 г.

androidx.compose.material3:material3-*:1.2.0-alpha05 is released. Version 1.2.0-alpha05 contains these commits.

Изменения API

  • Updates to the Checkbox and TriStateCheckbox colors. The CheckboxDefaults.colors() disabledUncheckedColor now only affects the border of the checkbox. Special cases that require you to set the internal box color when disabled and unchecked requires a custom constructed instance of a CheckboxColors with the desired color values. ( I77d17 , b/291943198 )

Версия 1.2.0-альфа04

26 июля 2023 г.

androidx.compose.material3:material3-*:1.2.0-alpha04 is released. Version 1.2.0-alpha04 contains these commits.

Новые функции

  • Experimental Segmented Button API ( Ifc8fb )
  • Dividers now have a parameter to control orientation to support vertical dividers. ( I4c899 , b/288438593 )

Изменения API

  • We are moving the density dependency to the component level. This applies to the following components: SwipeToDismiss and Sheet based components. Please use the new overload provided where density is a parameter. ( I1846e )
  • Additional annotations to specify allowed inputs to composables ( Ief234 )
  • Add an icon parameter to segmented button, split semantics so that segmented buttons can be selectable to implement single-select, and toggleable to implement multi-select, with SelectableSegmentedButtonRow and ToggelableSegmentedButtonRow respectively. ( I38740 )
  • Divider has been renamed to HorizontalDivider . Added VerticalDivider functionality. ( I5975c )
  • Change the use of ClosedFloatingPointRange for the lighter weight FloatRange in experimental Material3 APIs to minimize autoboxing. ( I4aab5 )
  • Added new Start alignment for FabPosition ( Ib7aea , b/170592777 )

Исправления ошибок

Версия 1.2.0-альфа03

21 июня 2023 г.

androidx.compose.material3:material3-*:1.2.0-alpha03 is released. Version 1.2.0-alpha03 contains these commits.

Изменения поведения

  • includeFontPadding is now false by default in Material 3 typography. The default line height style has also been changed to Trim.None and Alignment.Center , and explicit lineHeight (in sp) have been added to the TextStyle s of Typography . Consult the API docs if you want to customize these values, and see the blog post for an in-depth explainer of these changes. ( I6266f , Icabc3 )

Новые функции

  • Added an overload for RangeSlider that is a stateful version of the component. Created RangeSliderState that holds all of the information for the current active track, the measurements of the components of the RangeSlider , and the drag and gesture logic. ( I8c270 )
  • Search bar now supports shadows via the newly added shadowElevation parameter. ( Ia5369 , b/271040353 )
  • ColorScheme now supports new SurfaceContainer roles .
  • Surface tonal elevation overlay can now be disabled with the LocalTonalElevationEnabled composition local. ( Ic203c , b/277774590 )

Изменения API

  • Open the component colors constructors. ( I8c4a6 )
  • Adding focusable parameter to both tooltip APIs, so that developers can have the tooltip consume touch events or not. Be cautious that this might break accessibility focus automatic traversal. ( Ie32d8 )
  • Optimized accessibility for performance and memory allocations. ( Iede48 )
  • Expose DefaultSizeClasses and create StandardSizeClasses for WindowSizeClasses ( I91838 )
  • change WindowWidth/HeightSizeClass to float value classes ( Ie686e )

Исправления ошибок

  • Scaffold's contentWindowInsets parameter now respects consumed window insets. Note that the behavior of content padding based on topBar and bottomBar remains unchanged when these parameters are provided. ( I08b73 , b/264601542 )
  • Fix the alignment of the center top app bar to ensure that a long title doesn't render over the action icons or the navigation icon. ( I4369f , b/236994621 )
  • Tab positions now enforce a minimum content width of 24.dp. This provides an accessible touch target for tab indicators. ( Id8861 )
  • Dynamic color palettes from dynamicLightColorScheme and dynamicDarkColorScheme now support new surface roles. ( I1252e )
  • Updating the badge notification alignment to not clip when colliding with great grandparent. ( Idf75a )

Версия 1.2.0-альфа02

24 мая 2023 г.

androidx.compose.material3:material3-*:1.2.0-alpha02 is released. Version 1.2.0-alpha02 contains these commits.

Изменения API

  • Add window insets parameter to ModalBottomSheet .
    • Scrim for ModalBottomSheet may now be drawn behind status bar with windowInsets set to zero
    • Updated default ModalBottomSheet functionality to stay outside of system bars including navigation
    • Status bar inset handling is provided by drag handle in edge-to-edge mode.
    • BottomSheetDefaults includes window insets for BottomSheetWindow . ( I31200 , b/274872542 , b/272973615 , b/272334475 , b/268432129 , b/275849044 , b/275486106 , b/268433162 )
  • Deprecate Indicator and add Primary / SecondaryIndicator to match the M3 specs. PrimaryIndicator matches the width of the tab's content whereas SecondaryIndicator spans the full available width. SecondaryIndicator is equivalent to the now deprecated Indicator and can be a direct replacement. ( I27604 )
  • Added an option to pass in a ScrollState when constructing a DropdownMenu or an ExposedDropdownMenu for controlling the vertical scroll state of the displayed menu items. ( Ia0734 , b/185304441 )
  • Added an overload for Slider that is a stateful version of the component. Created SliderState that holds all of the information for the current active track, the measurements of the components of the Slider , and the drag and gesture logic. ( I124a5 )
  • Renaming the Semantics property isContainer to isTraversalGroup ( I121f6 )
  • Added optimized TextStyle.merge(...) with full parameter list. ( Iad234 , b/246961787 )
  • Made TooltipState , RichTooltipState , and PlainTooltipState public interfaces. Added RichTooltipStateImpl and PlainTooltipStateImpl for default states. Added remember*State functions to obtain these implemented states. Removed TooltipSync in favor of an TooltipDefault.GlobalMutatorMutex . ( I7813d )
  • Updated the DatePickerColors to include additional customization options for the date picker divider, navigation, and text input fields colors. ( I1a685 , b/274626815 )
  • DatePickerState and the DateRangePickerState are now public interfaces with default implementations that can be retrieved by the rememberDatePickerState and rememberDateRangePickerState . ( I71c52 )
  • Removed the dateValidator from DatePicker and DateRangePicker and introduced a SelectableDates interface that can be set on the state to control which dates or years are selectable in the UI. ( Ic2fc6 )
  • TimePicker removed from stable API, further changes are expected in the state API ( I3f39a )
  • ModalBottomSheet moved to android only. ModalBottomSheet is not recommended for desktop use, and the functionality is not actively maintained. ( Ib3778 )

Исправления ошибок

  • Fixed the AlertDialog dismiss action to appear below the confirm action when the actions stacked over each other to fit into the dialog's width. This fix aligns the implementation with the Material Design spec. ( I029de , b/235454277 )
  • Fixed bug in ListItem using incorrect padding for three-line items. ( I6e235 )
  • ModalBottomSheet now can display IME keyboard ( Idc508 , b/262140644 , b/268380384 , b/272483584 )

Версия 1.2.0-альфа01

10 мая 2023 г.

androidx.compose.material3:material3:1.2.0-alpha01 and androidx.compose.material3:material3-window-size-class:1.2.0-alpha01 are released. Version 1.2.0-alpha01 contains these commits.

Версия 1.1

Версия 1.1.2

20 сентября 2023 г.

androidx.compose.material3:material3:1.1.2 and androidx.compose.material3:material3-window-size-class:1.1.2 are released. Version 1.1.2 contains these commits.

Исправления ошибок

  • Fixed modifier incorrectly being passed to two composables. ( b/282761472 )
  • Fixed TimePickerState returns incorrect hours when initialized with 23 hours. ( b/278242122 )
  • Fixed initial toggle state for noon and minute validation. ( b/269768197 , b/282790635 )
  • Fixed state.hour returning incorrect value for 11pm. ( b/282761472 , b/278242122 )

Версия 1.1.1

21 июня 2023 г.

androidx.compose.material3:material3:1.1.1 and androidx.compose.material3:material3-window-size-class:1.1.1 are released. Version 1.1.1 contains these commits.

Исправления ошибок

  • Adds call for ModalBottomSheet without windowInset param for binary compatibility. ( Ib7959 )
  • Add window insets parameter to ModalBottomSheet .
    • Scrim for ModalBottomSheet may now be drawn behind status bar with windowInsets set to zero
    • Updated default ModalBottomSheet functionality to stay outside of system bars including navigation
    • Status bar inset handling is provided by drag handle in edge-to-edge mode.
    • BottomSheetDefaults includes window insets for BottomSheetWindow . ( I31200 , b/274872542 , b/272973615 , b/272334475 , b/268432129 , b/275849044 , b/275486106 , b/268433162 )

Версия 1.1.0

10 мая 2023 г.

androidx.compose.material3:material3:1.1.0 and androidx.compose.material3:material3-window-size-class:1.1.0 are released. Version 1.1.0 contains these commits.

Major features of 1.1.0

New Material Design 3 components

Enhancements to existing Material Design 3 components.

Promoted experimental APIs to stable!

Please see this blog post for more details!

Версия 1.1.0-rc01

19 апреля 2023 г.

androidx.compose.material3:material3:1.1.0-rc01 and androidx.compose.material3:material3-window-size-class:1.1.0-rc01 are released. Version 1.1.0-rc01 contains these commits.

Изменения API

  • TimePicker removed from stable API, further changes are expected in the state API ( I3f39a )
  • ModalBottomSheet moved to android only. ModalBottomSheet is not recommended for desktop use, and the functionality is not actively maintained. ( Ib3778 )

Версия 1.1.0-beta02

5 апреля 2023 г.

androidx.compose.material3:material3:1.1.0-beta02 and androidx.compose.material3:material3-window-size-class:1.1.0-beta02 are released. Version 1.1.0-beta02 contains these commits.

Изменения API

  • SheetState now has optional skipHiddenState parameter
  • rememberStandardBottomSheetState now has optional skipHiddenState parameter
  • BottomSheetScaffold now has a defined Hidden anchor, though it is disabled by default
  • SheetState.requireOffset documentation has been updated
  • BottomSheetDefaults.MinimizedShape has been renamed as BottomSheetDefaults.HiddenShape ( I839f4 , b/273870234 )

Исправления ошибок

  • Do not switch the dial face from hour to minute when touch exploration is enabled. ( I717d0 )
  • ModalBottomSheet and BottomSheetScaffold drag handle semantics are now merged. ( I05afb )
  • BottomSheetScaffold modifier, containerColor and contentColor parameters now only affect content. ( I992cb )
  • BottomSheetScaffold nestedScroll for sheet content now implements flings. ( I992cb )

Версия 1.1.0-beta01

22 марта 2023 г.

androidx.compose.material3:material3:1.1.0-beta01 and androidx.compose.material3:material3-window-size-class:1.1.0-beta01 are released. Version 1.1.0-beta01 contains these commits.

Изменения API

  • Add layout type param to TimePicker composable. It allows to use different layouts, depending on the screen configuration ( Ia0e16 )
  • SearchBarDefaults has been marked as experimental. ( I65561 )
  • Added shadow elevation to BottomSheetScaffold ( I94e0f )
  • Added support for displaying the date pickers without the header part. API changes to allow passing a null headline when creating a date picker. You can now pass null headline, title, and showToggleMode = false in order to display a headless picker. ( Id3f3a , b/266132421 , b/267194809 )

Исправления ошибок

  • Search bars now automatically clear focus when made inactive. ( I22a7c , b/261444487 )
  • Updated the DateRangePicker to allow selecting a range with the same date for its start and end. ( I16529 , b/272882497 )
  • Text fields now properly position their text elements when font size is smaller than expected. This may result in a few pixels change in your apps based on font settings and script. ( I8b8d0 )
  • Bottom sheet semantic actions now have labels. ( I277b0 )

Версия 1.1.0-альфа08

8 марта 2023 г.

androidx.compose.material3:material3:1.1.0-alpha08 and androidx.compose.material3:material3-window-size-class:1.1.0-alpha08 are released. Version 1.1.0-alpha08 contains these commits.

Новые функции

  • Added support for BottomSheetScaffold and BottomSheetScaffoldState . ( I063d4 )

Изменения API

  • Added functionality to the DatePickerState and the DateRangePickerState to allow setting dates after the initial creation of the state, as well as resetting selections by setting null timestamps. Setting dates manually should be made with caution, and the new setSelection function will throw an exception in case a provided date fails a precondition (see documentation). ( Ifa645 , b/268609314 , b/270427389 )
  • Rename Collapsed SheetValue to PartiallyExpanded to more accurately and flexibly depict behavior in this state. ( Ia1491 )
  • Updated ListItem parameter names to _content instead of _text. Default getters are now ReadOnlyComposables where relevant. ( I69a25 )
  • Graduate interactive Surface APIs from experimental. ( I90d59 , b/261561812 )

Исправления ошибок

  • Fixed an issue where ModalBottomSheet 's HalfExpanded state was calculated incorrectly and the sheet would appear to be floating. ( I45e84 , b/268411386 )
  • Add confirmValueChange check to scrim tap for ModalBottomSheet . ( I2311a , b/270425759 )
  • Move semantic BottomSheet actions to drag handle. ( I158ba )
  • ModalBottomSheet now commands focus on launch, handles back button. ( I4d2ab )
  • ModalBottomSheet onDismissRequest is now also handled during nested scroll flings. ( I655c5 , b/268433166 )

Версия 1.1.0-альфа07

22 февраля 2023 г.

androidx.compose.material3:material3:1.1.0-alpha07 and androidx.compose.material3:material3-window-size-class:1.1.0-alpha07 are released. Version 1.1.0-alpha07 contains these commits.

Новые функции

  • Add a Time Input composable that works with rememberTimePickerState() , it follows the M3 spec for time input ( Ia4fab )
  • Added a Material 3 DateRangePicker API for selecting a range of dates. ( I7a6c3 , b/267194809 )
  • Added a Material 3 input mode support for selecting date ranges via the DateRangePicker API. ( Ifdbc4 )
  • Text field colors now allow customizing:
    • The input field and placeholder text colors based on focus and error state. The textColor parameter has been renamed to unfocusedTextColor , and placeholderColor has been renamed to unfocusedPlaceholderColor .
    • The container color for filled text fields based on error state with the new errorContainerColor param.
  • Exposed dropdown menu text field colors have been updated with parameters to support the new prefix and suffix API. ( I9c8b4 , b/254284181 , b/264766350 )

Изменения API

  • Reverting some Slider API versions and removing redundant Slider overloads that are covered by the new experimental Slider with custom thumb and track. Promoting RangeSlider to be stable. ( Ie8fbd )
  • Renamed defaultElevation to elevation in chip's elevation functions. ( I0f872 )
  • The following Material 3 text field APIs are no longer experimental: TextField , OutlinedTextField , textFieldWithLabelPadding , textFieldWithoutLabelPadding , outlinedTextFieldPadding . ( Ieb5c0 , b/261561819 )
  • TimePickers is24Hour uses system setting ( I18856 )
  • Removed experimental annotation from scaffold apis. ( Ibb51e , b/261565765 , b/261436953 )

Исправления ошибок

  • ModalBottomSheet default shape is now always SheetDefaults.ExpandedShape . ( I0dfca )
  • Accessibility improvements for Material 3 DatePicker and DateRangePicker . ( I5087e )
  • Fix bug where max height constraint is propagated and may crash. ( I30d8c )
  • Removed semantic roles from clickable and selectable surfaces, updated components that used them to set roles using modifier.semantics ( I793d9 )

Версия 1.1.0-альфа06

8 февраля 2023 г.

androidx.compose.material3:material3:1.1.0-alpha06 and androidx.compose.material3:material3-window-size-class:1.1.0-alpha06 are released. Version 1.1.0-alpha06 contains these commits.

Новые функции

  • Text fields now support prefix and suffix text ( Ia8578 , b/179884561 )
  • Added a TimePicker function to show a time picker following the Material 3 spec, used in conjunction with TimePickerState and convenience method rememberTimePickerState ( I71910 )
  • A date input is now a display mode at the DatePicker . Added support for switching between date picker and date input modes. ( Ieeff7 )
  • Added API for RichTextTooltips . ( I58ef3 )
  • Modal bottom sheet implementation for Material 3, including ModalBottomSheet and ModalBottomSheetDefaults . Also introduces SheetState and rememberSheetState which can be used for future sheet components. ( I0853a , b/244189383 )

Изменения API

  • Stablize the API showSnackbar ( I195c2 , b/261424370 )
  • Stablize the APIs for assist chip and suggestion chip ( Ibb67b , b/261424370 )
  • Promotes ListItem , ListItemDefaults and ListItemColors API to non-experimental ( I7e7fa , b/261438882 )
  • Promoting SliderPositions , SliderDefaults.Thumb , and SliderDefaults.Track to stable and adding non-experimental Slider and RangeSlider APIs that contain custom thumbs and track. Also deprecating the previous Slider and RangeSlider APIs. ( Ie5ea6 , b/261566890 )
  • Made Modifier.tooltipAnchor() public, so devs can pass it to the anchor to indicate a tooltip should be displayed on long press. Updated PlainTooltipBox API to no longer make TooltipState nullable and now has a default. ( Ie2fb7 )
  • ProgressIndicatorDefaults.circularTrackColor has been marked @Composable for consistency. ( Id29cc )
  • Restored property getter LocalMinimuTouchTargetEnforcement and mark it as deprecated and redirect to LocalMinimumInteractiveComponentEnforcement . ( I60dd5 )

Версия 1.1.0-альфа05

26 января 2023 г.

androidx.compose.material3:material3:1.1.0-alpha05 and androidx.compose.material3:material3-window-size-class:1.1.0-alpha05 are released. Version 1.1.0-alpha05 contains these commits.

Новые функции

  • DatePickerDialog and accessibility support
  • Added Custom thumb and track to RangeSlider .

Обновления зависимостей

Версия 1.1.0-альфа04

11 января 2023 г.

androidx.compose.material3:material3:1.1.0-alpha04 and androidx.compose.material3:material3-window-size-class:1.1.0-alpha04 are released. Version 1.1.0-alpha04 contains these commits.

Новые функции

  • Initial DatePicker API for picking a single date via a calendar UI. This API is still undergoing changes. ( I722b9 )
  • Added support for plain tooltips via PlainTooltipBox . ( I0cdfb )
  • Search bar ( Iad128 )
  • SwipeToDismiss ( I458a8 , b/242889540 )

Изменения API

  • Added in IsContainer semantics property on Surfaces. This property will be used in a later change that determines traversal order based on the semantic meaning of elements such as surfaces. ( I63379 )
  • Mark navigation drawer related APIs as stable. ( Iab01e , b/261439597 )
  • Added a track color parameter for circular progress indicators, and a stroke cap parameter for both circular and linear progress indicators. ( Ie668c , b/216325962 , b/222964817 )
  • More return type nullability of deprecated-hidden functions ( Ibf7b0 )
  • Add Modifier.minimumInteractiveComponentSize . It can be used to reserve at least 48.dp in size to disambiguate touch interactions if the element would measure smaller. ( I33f58 , b/258495559 )
  • Added experimental API for AlertDialog composable that has a content slot. ( Iec4a2 )

Исправления ошибок

  • Progress for progress indicators is now properly bounded to its expected range. ( I8a7eb , b/262262727 )

Известная проблема

  • When updating from androidx.compose.foundation:1.4.0-alpha03 to androidx.compose.foundation:1.4.0-alpha04 , you might experience a java.lang.NoSuchFieldError error. Here is where the issue was orginially reported. A fix has been submitted, and will be available on the next Compose update. As a work around, update your androidx.compose.material and androidx.compose.material3 libraries to the latest version(1.1.0-alpha04) or downgrade your androidx.compose.foundation to 1.4.0-alpha03.

Версия 1.1.0-альфа03

7 декабря 2022 г.

androidx.compose.material3:material3:1.1.0-alpha03 and androidx.compose.material3:material3-window-size-class:1.1.0-alpha03 are released. Version 1.1.0-alpha03 contains these commits.

Изменения API

  • Renamed consumedWindowInsets() to consumeWindowInsets() and withConsumedWindowInsets() to onConsumedWindowInsetsChanged() and made the Modifiers public. ( Ie44e1 )
  • Add new default content padding for text button with icon to use. ( I8f662 )
  • Added disabled colors for navigation bar and rail. ( Ia7892 , b/258867034 )
  • Added an Modifier API to query ancestors scroll info. ( I2ba9d , b/203141462 )
  • Used in Clickable to correctly delay press interactions, when gestures could become scroll events.
  • Fixed Clickables not correctly delaying ripples, when used inside an Scrollable ViewGroup .
  • Updated Drawers and Sheets to correctly delay presses in case gestures can become scroll events.

Обновления зависимостей

  • Compose UI and Compose Material now depend on Lifecycle 2.5.1. ( I05ab0 , b/258038814 )

Версия 1.1.0-альфа02

9 ноября 2022 г.

androidx.compose.material3:material3:1.1.0-alpha02 and androidx.compose.material3:material3-window-size-class:1.1.0-alpha02 are released. Version 1.1.0-alpha02 contains these commits.

Изменения API

  • awaitFirstDown and waitForUpOrCancellation now accept a PointerEventPass for greater flexibility (also fixes ExposedDropdownMenuBox showing a menu while scrolling).( I7579a , b/212091796 )
  • Added minLines parameter into material and material3 Text, TextField and OutlinedTextField which allows setting the minimum height of the component in terms of number of lines ( I4af1d )
  • Deprecate the TopAppBarDefaults smallTopAppBarColors function in favor of a new topAppBarColors function that should be used when creating a TopAppBar . ( Ie6cb9 )
  • Added minLines parameter to the BasicText and BasicTextField . It allows to set the minimum height of these composables in terms of number of lines ( I24294 , b/122476634 )

Исправления ошибок

  • Clip the content of a Material3 IconButton and IconToggleBotton to the component's state-layer shape (eg circular shape). ( I9da8f )
  • Updates Material3 Medium and Large top app bars to apply the same background color across their entire surface, and to allow setting overriding the default colors with transparent color values. ( I67659 , b/249688556 , b/250838918 )

Версия 1.1.0-альфа01

24 октября 2022 г.

androidx.compose.material3:material3:1.1.0-alpha01 and androidx.compose.material3:material3-window-size-class:1.1.0-alpha01 are released. Version 1.1.0-alpha01 contains these commits.

Исправления ошибок

  • Fixes to the top app bar when title is applied with a TextStyle and a Brush. ( If667e )

Версия 1.0

Версия 1.0.1

9 ноября 2022 г.

androidx.compose.material3:material3:1.0.1 and androidx.compose.material3:material3-window-size-class:1.0.1 are released. Version 1.0.1 contains these commits.

Исправления ошибок

  • Updates Material3 Medium and Large top app bars to apply the same background color across their entire surface, and to allow setting overriding the default colors with transparent color values. ( I67659 , b/249688556 , b/250838918 )

Версия 1.0.0

24 октября 2022 г.

androidx.compose.material3:material3:1.0.0 and androidx.compose.material3:material3-window-size-class:1.0.0 are released. Version 1.0.0 contains these commits.

Major features of 1.0.0

This is the first stable release of Compose Material 3!

Material Design 3 theming and Material You dynamic color

Material Design 3 components

Window Size Class

  • material3-window-size-class is a new library that provides support for window size classes: a set of opinionated viewport breakpoints for you to design, develop, and test resizable application layouts against. You can use calculateWindowSizeClass to retrieve a window size class instance, which you can use to determine how your UI should appear, such as showing a navigation rail instead of bottom navigation for larger window sizes. For more information and sample usage see the API reference documentation for WindowSizeClass .

  • Please see this blog post for more details!

Версия 1.0.0-rc01

5 октября 2022 г.

androidx.compose.material3:material3:1.0.0-rc01 and androidx.compose.material3:material3-window-size-class:1.0.0-rc01 are released. Version 1.0.0-rc01 contains these commits.

Изменения API

Версия 1.0.0-beta03

21 сентября 2022 г.

androidx.compose.material3:material3:1.0.0-beta03 and androidx.compose.material3:material3-window-size-class:1.0.0-beta03 are released. Version 1.0.0-beta03 contains these commits.

Изменения API

  • ExposedDropdownMenuDefaults now exposes a padding value for menu items. ( I34ee1 )
  • ExposedDropdownMenuBoxScope now has a Modifier.menuAnchor() modifier that should be passed to the text field for proper a11y behavior. ( I27fa3 )
  • Adding two overloaded methods for the current Slider API to allow users to pass in a thumb or track to populate the slider. ( I21c00 )

Исправления ошибок

  • Updated dark theme color mapping for On Error Container to tone 90 ( Ic5612 )
  • Fix to allow setting a transparent background for small Material 3 top app bars. ( I645e2 , b/245575782 )

Version 1.0.0-beta02

7 сентября 2022 г.

androidx.compose.material3:material3:1.0.0-beta02 and androidx.compose.material3:material3-window-size-class:1.0.0-beta02 are released. Version 1.0.0-beta02 contains these commits.

Изменения API

  • Default components insets introduced in m3 components in beta01 version no longer account for IME insets.
  • Material3 Scaffold component now has a contentWindowInsets parameter, allowing to specify the amount of insets to handle for the content slot. ( Icf11a , b/243713323 )
  • Deprecates the experimental Material 3 SmallTopAppBar function and introduces an equivalent TopAppBar function. Please migrate your usage to the new one. ( I74404 , b/226918634 )
  • Adds control over the top app bar fling and snap behaviors. ( I15c81 )
  • Removes startIndent from Divider, moves color to last parameter. ( If7be2 )

Исправления ошибок

  • Have Dialogs identify themselves to talkback users by announcing the word Dialog when they are displayed. ( I857ef )

Версия 1.0.0-beta01

24 августа 2022 г.

androidx.compose.material3:material3:1.0.0-beta01 and androidx.compose.material3:material3-window-size-class:1.0.0-beta01 are released. Version 1.0.0-beta01 contains these commits.

Справочник API

To see latest theming, component and other composables available check out the Compose Material 3 API reference overview .

Изменения API

  • Updated the Material 3 top app bar to snap into a fully collapsed to a fully extended state. Also, updated the TopAppBarDefaults behavior function to be Composables and provide default values for their top app bar state and animation spec. ( I642b3 )
  • Updated FAB component signatures to match surface API ( I3afaa )
  • Added insets Build-in support for Top app bars, drawers, navigation bar and rail. These components, when used separately or with Scaffold will automatically handle insets for developers. Note: This change doesn't add automatic handling of status bar icons and transparency of the status and navigation bars. Please, continue to do it manually to ensure the best edge-to-edge experience. ( I7e4e6 , b/183161866 )
  • Updated component defaults to reduce API surface for future flexibility and performance improvements. ( I31820 )
  • Reordered chip and navigation drawer sheet parameters to maintain consistency within the API ( I45d0b )
  • Removed startIndent from Divider and moved color to be the last parameter.( If7be2 )

Версия 1.0.0-альфа16

10 августа 2022 г.

androidx.compose.material3:material3:1.0.0-alpha16 and androidx.compose.material3:material3-window-size-class:1.0.0-alpha16 are released. Version 1.0.0-alpha16 contains these commits.

Новые функции

  • Support specifying a custom width on a navigation drawer. ( Ia7f10 )

Изменения API

  • Reorder Tab and Leading icon tab parameters to maintain consistency within the API ( Ie2637 )
  • Marked BadgeDefaults as experimental. ( I98ef3 )
  • Remove deprecated navigation drawer function. ( I4f2db )
  • Reorder Slider parameters in Material 3 to maintain consistency within the API ( I0aee7 )
  • Reorder NavigationBar and NavigationRail parameters to maintain consistency within the API ( I51cda )
  • Reorder parameters in Material 3 to maintain consistency across the API. ( If4ae1 )
  • Reorder Slider parameters in Material 3 to maintain consistency within the API ( I62673 )
  • Renamed icons parameter to actions to be consistent with top app bar ( Id75be )
  • Mark Badge and BadgedBox as experimental because the anchor alignment is still influx. ( I1712e , b/236524516 )
  • Change @ExperimentalMaterial3Api annotations on icon button variants to @OptIn ( I070b5 )
  • Separated a navigation drawer's content to its own composable to support specifying a custom width on it. ( Ia7f10 )
  • Removes Divider from MenuDefaults and TabDefaults ( I4e33c )

Версия 1.0.0-альфа15

27 июля 2022 г.

androidx.compose.material3:material3:1.0.0-alpha15 and androidx.compose.material3:material3-window-size-class:1.0.0-alpha15 are released. Version 1.0.0-alpha15 contains these commits.

Новые функции

Изменения API

  • Updates to the FilterChip and ElevatedFilterChip APIs to remove the selectedIcon slot and promote reusing the leadingIcon for displaying a selected state. ( Ie5dc2 )
  • Add scrim and outline variant color roles. ( Id6d54 )
  • Fix naming conventions for composable defaults. ( I62b27 )
  • Mark ListItemDefaults and ListItemColors as experimental. ( I1f3ec )
  • Changes to the top app bar API to better reflect the meaning of its state properties. Also, mark the top app bar API as experimental. ( Ic0ad8 )
  • Text selection colors have now been added to TextFieldColors for better discoverability. ( Iba1b8 )
  • Adding ButtonDefault.ButtonWithIconContentPadding to be used with buttons that contain an icon. ( I2bf9c )
  • Text fields have been marked as experimental to allow for more flexibility in future API changes. ( I127b5 )
  • Removed the @ExperimentalMaterial3Api annotation from the Checkbox function. ( I5eefc )
  • Removed the @ExperimentalMaterial3Api annotation from the RadioButton function. ( I17e2a )
  • Removed the @ExperimentalMaterial3Api annotation from the non-interactive Cards. ( I9bd49 )
  • Updates various component defaults objects to include colors, shapes etc. ( I96e11 )

Исправления ошибок

  • Removed non-functioning trailing icons from input chip samples to avoid user confusion in the catalog app. ( I9846a )

Версия 1.0.0-альфа14

29 июня 2022 г.

androidx.compose.material3:material3:1.0.0-alpha14 and androidx.compose.material3:material3-window-size-class:1.0.0-alpha14 are released. Version 1.0.0-alpha14 contains these commits.

Новые функции

  • Added M3 list implementation, see the documentation for sample usage ( Id7a20 )

Изменения API

  • Change parameter name from values to value in RangeSlider ( I3b79a )
  • API changes to the InputChip implementation to support a selectable state per the Material Design spec. Additional support at the FilterChip colors for selected disabled state. ( I55244 , b/235792432 )
  • Add BottomAppBar default FAB ( Ida4c8 )
  • ColorScheme.surfaceColorAtElevation was added ( Id41af )
  • Interfaces in compose libraries are now built using jdk8 default interface methods ( I5bcf1 )
  • WindowWidthSizeClass and WindowHeightSizeClass now implement Comparable, so they can be compared using operators (<, <=, >=, >) and other APIs. ( I747d0 )

Исправления ошибок

  • Update badge sample to provide more meaningful content description. ( I10b9d )
  • Adds option to use the system font size to the Material 3 catalog's theme picker. ( I10605 )
  • Adds sample code for Badge and indeterminate progress indicators. ( I8fbe0 )

Версия 1.0.0-альфа13

1 июня 2022 г.

androidx.compose.material3:material3:1.0.0-alpha13 and androidx.compose.material3:material3-window-size-class:1.0.0-alpha13 are released. Version 1.0.0-alpha13 contains these commits.

Изменения API

  • Supports maintaining the top app bar position on configuration change. ( I10459 , b/216160958 )

Версия 1.0.0-альфа12

18 мая 2022 г.

androidx.compose.material3:material3:1.0.0-alpha12 and androidx.compose.material3:material3-window-size-class:1.0.0-alpha12 are released. Version 1.0.0-alpha12 contains these commits.

Исправления ошибок

Версия 1.0.0-альфа11

11 мая 2022 г.

androidx.compose.material3:material3:1.0.0-alpha11 and androidx.compose.material3:material3-window-size-class:1.0.0-alpha11 are released. Version 1.0.0-alpha11 contains these commits.

Новые функции

  • Added RangeSlider to Material 3 ( I18e38 )
  • Adds Material3 AssistChip and InputChip support ( I0d25a )
  • Adds Material3 FilterChip and SuggestionChip support ( I9fdf3 )

Изменения API

  • Renamed TextFieldDefaults.BorderStroke composable that draws a border stroke in OutlinedTextField to TextFieldDefaults.BorderBox . ( I5f295 )
  • Switch m3 visual changes ( Iab30e )
  • Allow passing colors to the standard icon buttons. ( Ia2445 )

Исправления ошибок

  • Add lint check to material3/Scaffold to ensure that the inner padding is used ( I72293 , b/226951418 )

Версия 1.0.0-альфа10

20 апреля 2022 г.

androidx.compose.material3:material3:1.0.0-alpha10 and androidx.compose.material3:material3-window-size-class:1.0.0-alpha10 are released. Version 1.0.0-alpha10 contains these commits.

Новые функции

  • material3-window-size-class is a new library that provides support for window size classes: a set of opinionated viewport breakpoints for you to design, develop, and test resizable application layouts against. You can use calculateWindowSizeClass to retrieve a window size class instance, which you can use to determine how your UI should appear, such as showing a navigation rail instead of bottom navigation for larger window sizes. For more information and sample usage see the API reference documentation for WindowSizeClass . For more information on window size class definitions, see the public guidance on supporting different screen sizes.

Изменения API

  • Adds default FAB elevation for BottomAppBar , removes trailing lambda from BottomAppBar with FAB. ( I92c47 )
  • Adds Material3 FilledIconButton , FilledTonalIconButton , and OutlinedIconButton . ( Ib2bda )
  • Updates Material 3 Snackbar API to accept color values for the optional action and dismiss-action. ( Ibe4b4 )
  • Partial consumption (down OR position) has been deprecated in PointerInputChange . You can use consume() to consume the change completely. You can use isConsumed to determine whether or not someone else has previously consumed the change.
  • PointerInputChange::copy() now always makes a shallow copy. It means that copies of PointerInputChange will be consumed once one of the copies is consumed. If you want to create an unbound PointerInputChange , use constructor instead. ( Ie6be4 , b/225669674 )
  • Changes to the Cards API to receive the container and content colors via a CardColors interface, and to support a disabled state for clickable cards. ( I927df )
  • The parameter backgroundColor has been renamed containerColor in Material 3 text fields for improved consistency with other components. ( I6fbd9 )

Исправления ошибок

  • Updates to the standard IconButton to align it with the Material3 spec. ( I09eab )
  • Move the top bar height of material3 Scaffold into the padding passed to content, allowing the content to render underneath the top app bar. If the PaddingValues are ignored, then the content might be obscured by the top bar. ( I83cbc , b/217776202 )

Версия 1.0.0-альфа09

6 апреля 2022 г.

androidx.compose.material3:material3:1.0.0-alpha09 is released. Version 1.0.0-alpha09 contains these commits.

Новые функции

  • Added Material 3 Switch API ( I2c3ad )

Изменения API

  • Added support for dropdown menus with text fields (aka 'exposed dropdown menus' or 'combo boxes'.) ( I1b832 )
  • Added shape parameter to MaterialTheme and Shape sub system. ( I37426 )
  • Added an expanded parameter to ExtendedFloatingActionButton to control whether the FAB is expanded or collapsed, with animations between each state. Added Extended FAB overload for extended FABs with trailing text for ExtendedFABs without icon. ( Iba7f1 )

Версия 1.0.0-альфа08

23 марта 2022 г.

androidx.compose.material3:material3:1.0.0-alpha08 is released. Version 1.0.0-alpha08 contains these commits.

Новые функции

Изменения API

  • Add default divider for menu ( I01374 )
  • Added surfaceTint color parameter to ColorScheme class. ( I2f558 )

Исправления ошибок

  • Fix at the Material3 Button to read its default text style value from the MaterialTheme. ( Ie62fc )

Версия 1.0.0-альфа07

9 марта 2022 г.

androidx.compose.material3:material3:1.0.0-alpha07 is released. Version 1.0.0-alpha07 contains these commits.

Изменения API

  • Updates to Material 3 Surface API that brings back the overloaded functions for clickable Surfaces, as well as adding a function to support selectable and toggleable Surfaces. ( I4bf18 )
  • LazyVerticalGrid and LazyHorizontalGrid are now stable. ( I307c0 )
  • LazyVerticalGrid/LazyHorizontalGrid and all related apis were moved into .grid subpackage. Please update your imports from androidx.compose.foundation.lazy to androidx.compose.foundation.lazy.grid. ( I2d446 )
  • Reverted previous change of relying solely on a View for WindowInsetsControllerCompat , and again require a Window which is required for managing some window flags. Deprecated ViewCompat.getWindowInsetsController in favor of WindowCompat.getInsetsController to ensure that the correct Window is used (such as if the View is in a dialog). ( I660ae , b/219572936 )
  • Added a new LazyVerticalGrid API to define cross axis sizes ( I17723 )

Исправления ошибок

  • Updates to the Card API to follow changes at the Surface API ( I3c8b9 )

Версия 1.0.0-альфа06

23 февраля 2022 г.

androidx.compose.material3:material3:1.0.0-alpha06 is released. Version 1.0.0-alpha06 contains these commits.

Изменения API

  • NavigationDrawerItem is added that represents a single destination within the drawers ( Ic396f , b/218286829 )
  • PermanentNavigationDrawer and DismissibleNavigationDrawer have been added as experimental APIs. Those are the drawers suitable well for large screen devices. ( I5f8ab , b/218286829 )
  • Adds Material 3 bottom app bar support ( Ic432a )
  • NavigationDrawer has been renamed to ModalNavigationDrawer ( I1807d , b/218286829 )
  • Added Material 3 Slider class and tokens ( I1ccee )
  • Added Tab implementation, see the documentation for sample usage ( Ie0146 )

Исправления ошибок

  • Fixed an issue where the TalkBack screen reader linear navigation selected an empty top app bar title. ( Id4690 )
  • Added IconSize to FloatingActionButtonDefaults . ( Ia71cf )
  • Bug fix for hidden AlertDialog buttons when a long text is added with a LazyColumn . ( Ib2cc9 , b/216663029 )

Версия 1.0.0-альфа05

9 февраля 2022 г.

androidx.compose.material3:material3:1.0.0-alpha05 is released. Version 1.0.0-alpha05 contains these commits.

Новые функции

Added Material Design 3 components

Изменения API

  • Deprecated Surface function that takes an onClick callback. Clickable surfaces should be created with an InteractionSource and a Modifier.clickable() . ( I211c6 )
  • Added pressed and focused elevation support for FAB. ( Ibb584 )
  • Changed the Surface API to receive an InteractionSource which allows controlling its appearance in different states. ( Iafbc8 )

Исправления ошибок

Версия 1.0.0-альфа04

26 января 2022 г.

androidx.compose.material3:material3:1.0.0-alpha04 is released. Version 1.0.0-alpha04 contains these commits.

Изменения API

  • Added NonRestartableComposable to methods that are overloads of existing methods without complex logic. This reduces compiler generated memoization checks (equals) for all parameters which are repeated in the inner function that is called. ( I90490 )
  • Added Material 3 divider. ( Ica5fc )
  • Mark the Checkbox and RadioButton with an experimental API annotation. ( Ie44bb )
  • Added support for Material 3 progress indicators. ( Iff232 , b/205023841 )

Исправления ошибок

  • Update a disabled TextButton's container color to be transparent ( I6b248 , b/213339737 )

Версия 1.0.0-альфа03

12 января 2022 г.

androidx.compose.material3:material3:1.0.0-alpha03 is released. Version 1.0.0-alpha03 contains these commits.

Исправления ошибок

Обновления зависимостей

  • Now depends on Kotlin 1.6.10 .

Версия 1.0.0-альфа02

1 декабря 2021 г.

androidx.compose.material3:material3:1.0.0-alpha02 is released. Version 1.0.0-alpha02 contains these commits.

Новые функции

  • Add support for checkbox and radiobutton.
  • Updated to be compatible with Kotlin 1.6.0

Изменения API

  • Remove drawer from Material 3's scaffold. ( I04f51 )
  • Adds Material 3 Checkbox support. ( Id5542 )
  • Adds Material 3 RadioButton support. ( I20334 )

Исправления ошибок

  • Reduce IconButton ripple radius from 40dp to 20dp. ( I68bbe , b/206674345 )
  • Port string fast path for Text changes from compose.material ( I30b03 )
  • Fixed but that hardcoded button to always be enabled. ( Iea832 , b/205335456 )

Версия 1.0.0-альфа01

27 октября 2021 г.

androidx.compose.material3:material3:1.0.0-alpha01 is released. Version 1.0.0-alpha01 contains these commits.

Новые функции

Material Design 3 theming and Material You dynamic color

Material Design 3 components

For more information, check out the Material Design 3 and Material You section in the Material Theming in Compose guide.