From 7879b8d5701b7702c260e8c9bade7314077048f8 Mon Sep 17 00:00:00 2001 From: Igor Demin Date: Fri, 27 Nov 2020 10:58:06 +0300 Subject: [PATCH] Multiplatform template. androidx.compose.foundation.Text is deprecated, replace by androidx.compose.material.Text --- .../multiplatform-template/common/src/commonMain/kotlin/App.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/multiplatform-template/common/src/commonMain/kotlin/App.kt b/templates/multiplatform-template/common/src/commonMain/kotlin/App.kt index e04516c660..71dba63610 100644 --- a/templates/multiplatform-template/common/src/commonMain/kotlin/App.kt +++ b/templates/multiplatform-template/common/src/commonMain/kotlin/App.kt @@ -1,6 +1,6 @@ -import androidx.compose.foundation.Text import androidx.compose.material.Button import androidx.compose.material.MaterialTheme +import androidx.compose.material.Text import androidx.compose.runtime.* @Composable