共有要素をアニメーション化する場合、いくつかの おすすめします。
非同期画像
一般に、ライブラリを使用して画像を非同期で読み込みます。たとえば、
Coil の AsyncImage
コンポーザブルを使用します。
2 つのコンポーザブル間でシームレスに動作させるには、
placeholderMemoryCacheKey()
と memoryCacheKey()
を文字列と同じキーに設定
キャッシュキーが同一のものになるように、共有要素キーから
一致します。新しい共有要素は、一致したキャッシュを使用します。
をプレースホルダとして使用し、新しい画像が読み込まれるまで待機します。
AsyncImage
の一般的な使用方法は次のとおりです。
AsyncImage( model = ImageRequest.Builder(LocalContext.current) .data("your-image-url") .crossfade(true) .placeholderMemoryCacheKey("image-key") // same key as shared element key .memoryCacheKey("image-key") // same key as shared element key .build(), placeholder = null, contentDescription = null, modifier = Modifier .size(120.dp) .sharedBounds( rememberSharedContentState( key = "image-key" ), animatedVisibilityScope = this ) )
テキスト
fontSize
の変化をアニメーション化するには、Modifier.sharedBounds()
、resizeMode =
ScaleToBounds()
を使用します。この移行により、サイズが
比較的流動的になります。contentScale
パラメータを微調整してアニメーション化できます。
フォントの太さやスタイルを設定できます。
Text( text = "This is an example of how to share text", modifier = Modifier .wrapContentWidth() .sharedBounds( rememberSharedContentState( key = "shared Text" ), animatedVisibilityScope = this, enter = fadeIn(), exit = fadeOut(), resizeMode = SharedTransitionScope.ResizeMode.ScaleToBounds() ) )
TextAlign
の変更はデフォルトではアニメーション化されません。代わりに
別の使用より Modifier.wrapContentSize() / Modifier.wrapContentWidth()
共有遷移の場合は TextAlign
。