Fixed
Status Update
Comments
jo...@google.com <jo...@google.com>
se...@google.com <se...@google.com>
se...@google.com <se...@google.com>
se...@google.com <se...@google.com>
ap...@google.com <ap...@google.com> #3
Thanks for the report!
se...@google.com <se...@google.com> #4
The release notes documentation has been edited to clarify this change in behavior for line height.
To support non-standard text sizes, we encourage users to follow the Material design system and use a different style = LocalTextStyle.current.copy(lineHeight = TextUnit.Unspecified)
, or create a custom Typography
entirely.
na...@google.com <na...@google.com> #5
deleted
tu...@gmail.com <tu...@gmail.com> #6
In my case, I have multiple font sizes in the same Text
(using SpanStyle
in AnnotatedString
). There are legitimate reasons for this. For example, when combining Chinese and English (phonetic) together (for language-learning purposes).
0x...@gmail.com <0x...@gmail.com> #7
hmm. This bug also appears at 1.2.0-alpha08.
I think there's some issue with DragHandle class. If I comment out Drag Handle, it works fine.
ModalBottomSheet(
onDismissRequest = {
Log.d("on dismoiss", "on dismiss request")
openBottomSheet = false
},
sheetState = modalBottomSheetState,
dragHandle = {
// BottomSheetDefaults.DragHandle() // If I comment this line. it works.
},
modifier = Modifier.padding(bottom = 30.dp),
)
I think there's some issue with DragHandle class. If I comment out Drag Handle, it works fine.
ModalBottomSheet(
onDismissRequest = {
Log.d("on dismoiss", "on dismiss request")
openBottomSheet = false
},
sheetState = modalBottomSheetState,
dragHandle = {
// BottomSheetDefaults.DragHandle() // If I comment this line. it works.
},
modifier = Modifier.padding(bottom = 30.dp),
)
bb...@jeniusbank.com <bb...@jeniusbank.com> #8
Comment has been deleted.
Description
Jetpack Compose version:
androidx.compose.material3:material3:1.1.0-alpha06
Jetpack Compose component used: ModalBottomSheet
Android Studio Build: #AI-221.6008.13.2211.9514443
Kotlin version: 1.8.10
Steps to Reproduce or Code Sample to Reproduce:
onDismissRequest
we setopenBottomSheet
to false, butonDismissRequest
wasn't call (I attached video of reproduce)Code: