Skip to content

Instantly share code, notes, and snippets.

@abhishektiwarijr
abhishektiwarijr / Compose.xml
Created January 18, 2024 14:14
Compose Live Templates
<templateSet group="Compose">
<template name="compb-fms" value="import androidx.compose.foundation.layout.fillMaxSize&#10;&#10;@androidx.compose.runtime.Composable&#10;fun $NAME$() {&#10;androidx.compose.foundation.layout.Box(&#10; modifier = androidx.compose.ui.Modifier.fillMaxSize()&#10;) {&#10; $END$ &#10;}&#10;}" description="Composable with a Box Parent with modifier fillMaxSize" toReformat="true" toShortenFQNames="true">
<variable name="NAME" expression="" defaultValue="" alwaysStopAt="true" />
<context>
<option name="KOTLIN" value="true" />
<option name="KOTLIN_COMMENT" value="false" />
</context>
</template>
<template name="compb-fmw" value="import androidx.compose.foundation.layout.fillMaxWidth&#10;&#10;@androidx.compose.runtime.Composable&#10;fun $NAME$() {&#10;androidx.compose.foundation.layout.Box(&#10; modifier = androidx.compose.ui.Modifier.fillMaxWidth()&#10;) {&#10; $END$ &#10;}&#10;}" description="Composable with a Box Parent with modifier fillMaxWidth" t