cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
dmitcha1
Frequent Visitor

Cannot get app to display full width

I have tried every step provided in the board that I can find, but my app will not display full-width. 

 

  1. My Settings/Screen Size + Orientation settings are: 16:9 (Default), Scale to Fit Off, Lock Aspect Ratio Off.
  2. When I open the published app, I click Fit to Screen
  3. Each of my screens have a width setting of Max(App.Width, App.DesignWidth) and a height setting of Max(App.Height, App.DesignHeight)

I cannot get the app to resize to fit my screen. 

 

Troubleshooting:

  • I built a test app with just a blank screen, filled that with a background color, then placed two controls on those. They also stop at 1366.
  • I set the dimensions to 1920x1080. Everything expanded to fill that screen. When I reset to 16:9, no more resizing.
  • I tested a PA template, and it does autoresize in my screen. Those screens are set to the Max formulas, and the controls have fixed dimensions (it wasn't written to be responsive), but it still resized without clicking Fit to Screen.

I thought it might be something buggy in components, but even when I built the new app without them, it didn't autofit. 

  • I changed my component header width to: Max(App.Width, App.DesignWidth). The headers then resized to fill the screen, but the screens underneath now shrunk fully flush left and no longer filled even the height of the window.
  • I deleted the components, turned off components and turned off all preview options. The screen remained flush left and at a reduced size.

Is there anything else that might make this work?

 

Also, is there a way to set Preview to full-screen?

 

Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions

I'm coming back with the extremely simple solution, with thanks to MS Support. All I had to do was add a single rectangle the size of the full screen (1366 wide) to each screen. I positioned it in the back, no color, then reset the screen size + orientation settings to Scale to Fit On and Lock Aspect Ratio off. The app autofit all of my screens, regardless of size!

 

I had seen the rectangle on the screens of the Customer Success app and assumed incorrectly it was a visual design element. Instead, it was a responsive design trick.

 

Here's the note from MS support, in case it helps anyone else:

 

-   We have been able to reproduce this issue too.

-   We did a bit of reverse engineering on the customer success app and found that the width of the rectangle was 1366px and we adopted this on our test app and it stopped overflowing.

-   Follow the below steps and please let us know how things go:

 

o   Create a rectangle by going to ‘insert’ then ‘icons’ and scroll down to ‘rectangles’

o   Adjust the width of the rectangle to 1366px and adjust the color to the background color of your app.

o   Assuming your app is landscape, set the Screen Size + Orientation settings

  • 16:9 (Default)
  • Scale to Fit On
  • Lock Aspect Ratio to off
  • Lock Orientation to on.


 

 

 

 

View solution in original post

10 REPLIES 10
Pstork1
Most Valuable Professional
Most Valuable Professional

First, if you haven't read the article on Power Apps Responsive design here it is.

https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/create-responsive-layout

 

Otherwise, the one thing that I do differently is that after turning off scale to fit I always use Custom for the screen size.  Using 16:9 means that it will try to impose that aspect ratio on the screen no matter what the width setting is.  With Custom it gives you the freedom to change both at runtime.  Just type in numbers that make sense on your current monitor while designing and then set them in the app programmatically.  That will override your custom settings.  



-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.

I see, thanks - that may be why it worked with Custom set to 1920x1080.

 

I don't understand specifically how to do the latter half of this:

 


@Pstork1 wrote:

Just type in numbers that make sense on your current monitor while designing and then set them in the app programmatically.  That will override your custom settings.  


When I first reviewed the responsive settings, it was an enormous task to manually set every control in the frame. But when I launch sample apps, they have 16:9 set as default size and all of the controls are fixed dimensions, but they immediately resize in my screen. 

 

How does one set autofit screen in the app programmatically? Is there some way other than manually setting every control on every screen to relative size and width? And do you understand why the sample templates work with autofit?

 

Thanks.

Pstork1
Most Valuable Professional
Most Valuable Professional

A couple of points.  If you are on a 16:9 screen then having autoresize turned on will autoresize for you screen.  But that's not responsive since if you are on a 4:3 screen it will autoresize to make sure that a 4:3 resolution will fit on your screen.  That will leave space at either the sides or the top.  To do full responsive so the app will adapt to whatever screen size you are in you do have to set the dimensions of the Screen and container objects manually in the code.  Everything else is set relative to them by using Parent.something or recognizing that the X and Y are relative to the parent.  There is no magic fix for that.  Autoresize is easy and will give good results, but it won't be perfect on all screens. Using a fixed resolution or screen fit ratio won't fill the whole screen on every screen.



-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.
Anonymous
Not applicable

Thank you for responding. Setting magic fixes aside, I am hoping someone just has an explanation: In the sample templates I've reviewed, all have set each screen to max width and height, but none have set any controls on the page to relative settings. Each of these has auto-resized to fill my 27" monitor. My app, constructed identically, does not.


If you, or anyone, has seen the same discrepancy by briefly examining the sample templates that go full screen without individually responsive controls, and figured it out, I would appreciate that understanding.

If it's useful for anyone trying to troubleshoot, here are design settings from a sample template:

 

  1. The screen settings (responsive)
  2. The control settings (fixed) - I can only upload one, per attachment limits, but all are the same
  3. The published view (fit to screen)

I am trying to understand this because my published view dimensions keep changing. Sometimes it is centered with margins, right now it is flushed left, etc. So I suspect there is a div or some other design issue that needs to be addressed. This happens frequently in Oxygen Builder, which I use for WP design, and carefully working through Inspect Element usually identifies the culprit. Inspect Element tweaks haven't corrected screens yet.

 

Thank you for any insights anyone can share about why this works for the template.

Pstork1
Most Valuable Professional
Most Valuable Professional

Its the ratio of the Pixel height vs. width that matters, not that its a 27" monitor.  If the ratio is 4:3 (width vs height) then that setting will fill the screen, assuming scale to fit is turned on.  If the ratio is 16:9 then that setting will fill the screen. But if the screen is set to one of those with scale to fit and the ratio of the monitor doesn't match the setting then you will get white space.  That's where responsive comes in.  If you turn off the ratios and scaling settings then you can set the position and size of all the controls on the screen using formulas.

 

For the templates, I suspect your 27" monitor matches the pixel ratio that was used in the template.  So it works.



-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.

We are not discussing the same issue.

 

I am not confused by how responsive design works, which is what you are trying to assist with. I understand responsive design principles and screen ratios.

 

Instead, I am confused by the discrepancy between the behavior of two identical apps. As I mentioned, the app that is not resizing is identical in settings to the app that is resizing. That is what I am solving for. 

 

Further, at some point in editing, the non-resizing app further breaks the container and flushes fully left. In other template-driven software, such breaks frequently are caused by a setting in a single div (or here, control). 

 

If anyone has experienced this and has read the content of my posts, any insights would be great. Thanks.

 

If anyone has

Pstork1
Most Valuable Professional
Most Valuable Professional

Resizing aside for the moment, one of the things that breaks placement is renaming screens.  If you create a screen exactly the way you want it to look, duplicate it, and then rename the duplicate a lot of the controls will re-align.  This has been reported and is a known issue.

 

In terms of two different apps not following the same rule set, I would have to see the two apps to track down why they behave differently.  But there is some setting that is different. There are a lot of things other than X, Y, Width, and Height that will affect the screen. That's why I usually go to the trouble of doing some level of responsive design.



-------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.
Anonymous
Not applicable

Thanks, and exactly, it's the settings I've been stepping through, but let me give this insight a try next. There are multiple cloned and renamed edited screens in the app. I am going to test in a fresh app to see if not renaming leaves the screen placement intact and, in turn, might even affect resizing.

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!   This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions in the Forums to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber of SolutionsSuper UsersNumber of Solutions @anandm08  23 @WarrenBelz  31 @DBO_DV  10 @Amik  19 AmínAA 6 @mmbr1606  12 @rzuber  4 @happyume  7 @Giraldoj  3@ANB 6 (tie)   @SpongYe  6 (tie)     Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersSolutionsSuper UsersSolutions @anandm08  10@WarrenBelz 25 @DBO_DV  6@mmbr1606 14 @AmínAA 4 @Amik  12 @royg  3 @ANB  10 @AllanDeCastro  2 @SunilPashikanti  5 @Michaelfp  2 @FLMike  5 @eduardo_izzo  2   Meekou 2   @rzuber  2   @Velegandla  2     @PowerPlatform-P  2   @Micaiah  2     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 3:Community MembersSolutionsSuper UsersSolutionsPower Apps anandm0861WarrenBelz86DBO_DV25Amik66Michaelfp13mmbr160647Giraldoj13FLMike31AmínAA13SpongYe27     Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 4:Community MembersSolutionsSuper UsersSolutionsPower Apps DBO-DV21WarranBelz26Giraldoj7mmbr160618Muzammmil_0695067Amik14samfawzi_acml6FLMike12tzuber6ANB8   SunilPashikanti8

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages