From e8ad65c3ac70d8a8985fa91872f98f8dbf350a8c Mon Sep 17 00:00:00 2001 From: Jaehwa Noh Date: Fri, 3 May 2024 09:17:21 +0900 Subject: [PATCH 1/2] Improve Noticeability. --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4743b4261..6cec1594b 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,8 @@ A gardening app illustrating Android development best practices with migrating a Jetpack Compose. To learn about how Sunflower was migrated to Compose, see the [migration journey](https://github.com/android/sunflower/blob/main/docs/MigrationJourney.md) document. -**Note**: To see the original View implementation of Sunflower, checkout the [`views`](https://github.com/android/sunflower/tree/views) branch. +> [!Note] +> To see the original View implementation of Sunflower, checkout the [`views`](https://github.com/android/sunflower/tree/views) branch. ## Screenshots @@ -15,7 +16,8 @@ Jetpack Compose. To learn about how Sunflower was migrated to Compose, see the This sample showcases how to migrate an existing View-based app (Material 2) to Compose (Material 3). See the linked migration journey doc above to learn more. -**Note**: As Compose cannot render HTML code in `Text` yet. The +> [!Note] +> As Compose cannot render HTML code in `Text` yet. The `AndroidViewBinding` API is used to embed a `TextView` in Compose. See the `PlantDescription` composable in the [PlantDetailView file](app/src/main/java/com/google/samples/apps/sunflower/compose/plantdetail/PlantDetailView.kt). From 09286cb99c4e3d4491c4132edce95b7231c47414 Mon Sep 17 00:00:00 2001 From: Jaehwa Noh Date: Fri, 3 May 2024 09:22:09 +0900 Subject: [PATCH 2/2] Change style. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6cec1594b..91f84f921 100644 --- a/README.md +++ b/README.md @@ -18,9 +18,9 @@ See the linked migration journey doc above to learn more. > [!Note] > As Compose cannot render HTML code in `Text` yet. The -`AndroidViewBinding` API is used to embed a `TextView` in Compose. See the -`PlantDescription` composable in the -[PlantDetailView file](app/src/main/java/com/google/samples/apps/sunflower/compose/plantdetail/PlantDetailView.kt). +> `AndroidViewBinding` API is used to embed a `TextView` in Compose. See the +> `PlantDescription` composable in the +> [PlantDetailView file](app/src/main/java/com/google/samples/apps/sunflower/compose/plantdetail/PlantDetailView.kt). ## Requirements