|
|
@ -1,10 +1,11 @@ |
|
|
|
<?xml version="1.0" encoding="UTF-8"?> |
|
|
|
<?xml version="1.0" encoding="UTF-8"?> |
|
|
|
<templateSet group="ComposeMultiplatformTemplates"> |
|
|
|
<templateSet group="ComposeMultiplatformTemplates"> |
|
|
|
|
|
|
|
|
|
|
|
<template name="WwB" description="Wrap with Box" |
|
|
|
<template name="boxcomp" description="Insert Box Composable" |
|
|
|
value="$COMPOSABLE$(modifier = androidx.compose.ui.Modifier) { $SELECTION$ }" |
|
|
|
value="$COMPOSABLE$ { $SELECTION$ }" |
|
|
|
toReformat="true" toShortenFQNames="true"> |
|
|
|
toReformat="true" toShortenFQNames="true"> |
|
|
|
<variable name="COMPOSABLE" expression="" defaultValue=""androidx.compose.foundation.layout.Box"" alwaysStopAt="true"/> |
|
|
|
<variable name="COMPOSABLE" expression="" defaultValue=""androidx.compose.foundation.layout.Box"" |
|
|
|
|
|
|
|
alwaysStopAt="true"/> |
|
|
|
<context> |
|
|
|
<context> |
|
|
|
<option name="KOTLIN" value="true"/> |
|
|
|
<option name="KOTLIN" value="true"/> |
|
|
|
<option name="KOTLIN_COMMENT" value="false"/> |
|
|
|
<option name="KOTLIN_COMMENT" value="false"/> |
|
|
@ -12,50 +13,55 @@ |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<template name="WwC" description="Wrap with Card" |
|
|
|
<template name="cardcomp" description="Insert Card Composable" |
|
|
|
value="$COMPOSABLE$(modifier = androidx.compose.ui.Modifier) { $SELECTION$ }" |
|
|
|
value="$COMPOSABLE$ { $SELECTION$ }" |
|
|
|
toReformat="true" toShortenFQNames="true"> |
|
|
|
toReformat="true" toShortenFQNames="true"> |
|
|
|
<variable name="COMPOSABLE" expression="" defaultValue=""androidx.compose.material.Card"" alwaysStopAt="true"/> |
|
|
|
<variable name="COMPOSABLE" expression="" defaultValue=""androidx.compose.material.Card"" |
|
|
|
|
|
|
|
alwaysStopAt="true"/> |
|
|
|
<context> |
|
|
|
<context> |
|
|
|
<option name="KOTLIN" value="true"/> |
|
|
|
<option name="KOTLIN" value="true"/> |
|
|
|
<option name="KOTLIN_COMMENT" value="false"/> |
|
|
|
<option name="KOTLIN_COMMENT" value="false"/> |
|
|
|
</context> |
|
|
|
</context> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
<template name="WwCol" description="Wrap with Column" |
|
|
|
<template name="columncomp" description="Insert Column Composable" |
|
|
|
value="$COMPOSABLE$(modifier = androidx.compose.ui.Modifier) { $SELECTION$ }" |
|
|
|
value="$COMPOSABLE$ { $SELECTION$ }" |
|
|
|
toReformat="true" toShortenFQNames="true"> |
|
|
|
toReformat="true" toShortenFQNames="true"> |
|
|
|
<variable name="COMPOSABLE" expression="" defaultValue=""androidx.compose.foundation.layout.Column"" alwaysStopAt="true"/> |
|
|
|
<variable name="COMPOSABLE" expression="" defaultValue=""androidx.compose.foundation.layout.Column"" |
|
|
|
|
|
|
|
alwaysStopAt="true"/> |
|
|
|
<context> |
|
|
|
<context> |
|
|
|
<option name="KOTLIN" value="true"/> |
|
|
|
<option name="KOTLIN" value="true"/> |
|
|
|
<option name="KOTLIN_COMMENT" value="false"/> |
|
|
|
<option name="KOTLIN_COMMENT" value="false"/> |
|
|
|
</context> |
|
|
|
</context> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
<template name="WwRow" description="Wrap with Row" |
|
|
|
<template name="rowcomp" description="Insert Row Composable" |
|
|
|
value="$COMPOSABLE$(modifier = androidx.compose.ui.Modifier) { $SELECTION$ }" |
|
|
|
value="$COMPOSABLE$ { $SELECTION$ }" |
|
|
|
toReformat="true" toShortenFQNames="true"> |
|
|
|
toReformat="true" toShortenFQNames="true"> |
|
|
|
<variable name="COMPOSABLE" expression="" defaultValue=""androidx.compose.foundation.layout.Row"" alwaysStopAt="true"/> |
|
|
|
<variable name="COMPOSABLE" expression="" defaultValue=""androidx.compose.foundation.layout.Row"" |
|
|
|
|
|
|
|
alwaysStopAt="true"/> |
|
|
|
<context> |
|
|
|
<context> |
|
|
|
<option name="KOTLIN" value="true"/> |
|
|
|
<option name="KOTLIN" value="true"/> |
|
|
|
<option name="KOTLIN_COMMENT" value="false"/> |
|
|
|
<option name="KOTLIN_COMMENT" value="false"/> |
|
|
|
</context> |
|
|
|
</context> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
<template name="WwLazyCol" description="Wrap with Lazy Column" |
|
|
|
<template name="lazycolumncomp" description="Insert Lazy Column Composable" |
|
|
|
value="$COMPOSABLE$(modifier = androidx.compose.ui.Modifier) { item { $SELECTION$ } }" |
|
|
|
value="$COMPOSABLE$ { item { $SELECTION$ } }" |
|
|
|
toReformat="true" toShortenFQNames="true"> |
|
|
|
toReformat="true" toShortenFQNames="true"> |
|
|
|
<variable name="COMPOSABLE" expression="" defaultValue=""androidx.compose.foundation.lazy.LazyColumn"" alwaysStopAt="true"/> |
|
|
|
<variable name="COMPOSABLE" expression="" defaultValue=""androidx.compose.foundation.lazy.LazyColumn"" |
|
|
|
|
|
|
|
alwaysStopAt="true"/> |
|
|
|
<context> |
|
|
|
<context> |
|
|
|
<option name="KOTLIN" value="true"/> |
|
|
|
<option name="KOTLIN" value="true"/> |
|
|
|
<option name="KOTLIN_COMMENT" value="false"/> |
|
|
|
<option name="KOTLIN_COMMENT" value="false"/> |
|
|
|
</context> |
|
|
|
</context> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
<template name="WwLazyRow" description="Wrap with Lazy Row" |
|
|
|
<template name="lazyrowcomp" description="Insert Lazy Row Composable" |
|
|
|
value="$COMPOSABLE$(modifier = androidx.compose.ui.Modifier) { item { $SELECTION$ } }" |
|
|
|
value="$COMPOSABLE$ { item { $SELECTION$ } }" |
|
|
|
toReformat="true" toShortenFQNames="true"> |
|
|
|
toReformat="true" toShortenFQNames="true"> |
|
|
|
<variable name="COMPOSABLE" expression="" defaultValue=""androidx.compose.foundation.lazy.LazyRow"" alwaysStopAt="true"/> |
|
|
|
<variable name="COMPOSABLE" expression="" defaultValue=""androidx.compose.foundation.lazy.LazyRow"" |
|
|
|
|
|
|
|
alwaysStopAt="true"/> |
|
|
|
<context> |
|
|
|
<context> |
|
|
|
<option name="KOTLIN" value="true"/> |
|
|
|
<option name="KOTLIN" value="true"/> |
|
|
|
<option name="KOTLIN_COMMENT" value="false"/> |
|
|
|
<option name="KOTLIN_COMMENT" value="false"/> |
|
|
|