navigationSelectionModal.show()} disabled={!selectedScreens.length} size="L" > Please select the screens you would like to add to your application. Autogenerated screens come with CRUD functionality. Blank screen
toggleScreenSelection({ id: blankScreen })} class:disabled={autoSelected} >
Blank
{#if selectedScreens.includes(blankScreen)} {/if}
Autogenerated Screens {#each templates.filter(x => x.id !== blankScreen) as template}
toggleScreenSelection(template)} class="item" >
{template.name}
{#if selectedScreens.includes(template.id)} {/if}
{/each}