function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Alex Z 16Alex Z 16 

Flexipage - LWC with no header

I have added a LWC component onto an APP page:
 
<?xml version="1.0" encoding="UTF-8"?>
    <FlexiPage xmlns="http://soap.sforce.com/2006/04/metadata">
        <flexiPageRegions>
            <componentInstances>
                <componentName>myComponent</componentName>
            </componentInstances>
            <name>main</name>
            <type>Region</type>
        </flexiPageRegions>
        <masterLabel>Something</masterLabel>
        <template>
            <name>flexipage:defaultAppHomeTemplate</name>
        </template>
        <type>AppPage</type>
    </FlexiPage>


I have then set the App Page as a tab for my App.

When my flexipage is rendered, there is a default header with my tab icon and tab name rendered in the UI.

How can i hide that header so that the only thing rendered is my flexipage LWC component?
Arun ParmarArun Parmar
Hi Alex Z 16,

Can you please share any screenshot of viewing app or component so i can give you suggestion.
Alex Z 16Alex Z 16

User-added image

 

On the left is my LWC component. On the right is exact same component wrapped in an Aura component. I want to get what i see on the right but without wrapping in Aura (as i lose ability to set runtime properties).