Created
December 17, 2022 18:42
-
-
Save vickycj/476a0c7f4472fb8d872fa90c791d7c96 to your computer and use it in GitHub Desktop.
Compose Template Android Studio
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME} | |
#end | |
#parse("File Header.java") | |
import androidx.compose.runtime.Composable | |
import androidx.compose.ui.tooling.preview.Preview | |
@Composable | |
internal fun ${NAME}() { | |
} | |
@Preview | |
@Composable | |
private fun Preview${NAME}() { | |
${NAME}() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment