Building, integrating, or customizing apps and workflows within Microsoft Teams using developer tools and APIs
Based on the information you provided, I understand that you have set the "isFullScreen": true property in your Teams app manifest, but you are still seeing the default header (Home/About) when viewing the app in your test environment. You are looking to confirm if there is a missing configuration or if this is a known limitation.
Based on my research, the "isFullScreen": true property (when placed at the root level of the manifest.json file) is indeed designed to hide the default tab header (the bar showing tabs like Home and About in personal/static tab apps) and allow your app to render in full screen.
However, the catch here is that this specific property only takes effect when the app package is published to your organization's App Catalog. It does not function properly when you are sideloading the app, using a test environment, or uploading it directly via the Developer Portal / App Studio.
To get this working and completely hide the header, you can consider the following steps:
- Publish to the App Catalog: Upload your app package directly to the Organization App Catalog via the Microsoft Teams Admin Center.
- Verify Manifest: Double-check your
manifest.jsonone last time to ensure"isFullScreen": trueis strictly at the root level. - Clear Cache: Force Microsoft Teams to completely clear its cache and restart so it pulls the newly published org-level version rather than a cached sideloaded version.
I hope this information helps you. Let me know if you have any other questions.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.