Easy Power Apps Scrollable Screen Using A Vertical Container

Easy Power Apps Scrollable Screen Using A Vertical Container

When we use a basic Power Apps form or gallery whose contents extend beyond its limits a scrollable screen is automatically generated. But outside of those controls, when we want to do something custom we must make the scrollable screen for ourselves. Fortunately, the responsive containers in Power Apps make this easy. By changing the vertical overflow property of a container to scroll we can turn it into a scrollable screen and add any controls we like.

In this article I will show you how to make a scrollable screen in Power Apps using a vertical container.

Table Of Contents
Introduction: Projects Backlog App
Setup The SharePoint List
Create A Scrollable Screen Using A Vertical Container
Add Controls To A Power Apps Scrollable Screen
Insert An Auto-Height Label Into A Power Apps Scrollable Screen
Insert An Auto-Height Gallery Into A Power Apps Scrollable Screen
Reset The Scrollable Screen Scrollbar Back Top
Navigate To The Next Record Or The Previous Record And Reset The Scrollbar




Introduction: Projects Backlog App

The Projects Backlog App is used by a software development team to track a list of projects that need to be done. A scrollable screen shows the project title, estimated hours, start date, description and skills required.





Setup The SharePoint List

Create a new SharePoint list to called Projects Backlog to store data for the app. Add the following columns:

  • Title (single-line text)
  • Description (multiple-line text)
  • Start Date (date)
  • Estimated Hours (number)
  • Skills Required (choices) (allow multiple selections)



The Skills Required (choices) column needs 4 options: Power Apps, Power Automate, Power BI and Power Virtual Agent. It must have the Allow Multiple Selections setting enabled to allow more than one skill to be chosen.



Input this data into the SharePoint list…

IDTitleDescriptionStart DateEstimated HoursSkills Required
1Time Off Request AppLorem ipsum dolor…3/8/202180Power Apps, Power Automate, Power BI
2Safety Incidents ReportingLorem ipsum dolor… 3/22/2021240Power Apps, Power Automate, Power BI
3Job Site Inspection AppLorem ipsum dolor… 4/6/2021150Power Apps, Power BI
4Expense Report Lorem ipsum dolor… 3/3/202180Power Apps, Power BI, Power Virtual Agents



…and use this Lorem Ipsum text inside the description column. For the first row copy and paste all of the text into the description. For the rest of the records copy and paste only 1 or 2 paragraphs. The purpose of this is to learn how to deal with text fields of variable length.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur vestibulum viverra hendrerit. Aliquam finibus dolor at tellus suscipit vestibulum. Ut sed ipsum massa. Donec sit amet lacus id arcu auctor feugiat in non dui. Maecenas vel urna purus.

In mollis posuere dolor, non semper lectus. Donec pharetra, odio et pulvinar eleifend, sem tortor placerat lorem, tincidunt consectetur sem velit vel arcu. Nulla non urna urna. Vestibulum turpis metus, interdum et lectus at, dapibus vulputate leo. 

Fusce bibendum augue ut dictum sollicitudin.  Nam purus odio, condimentum in lobortis et, finibus vitae arcu. Sed sodales mollis faucibus. Integer ultrices felis magna, vitae malesuada magna pellentesque vel. Curabitur a libero vel erat tempor faucibus sit amet convallis risus.




Create A Scrollable Screen Using A Vertical Container

Open Power Apps Studio and create a new tablet app from blank. Insert a label at the top of the screen with the text “Projects Backlog” to at as the titlebar.



Go to the Insert menu on the left navigation menu and search for a vertical container. Place a vertical container on the screen and resize the container so it fills the entire canvas under the titlebar.



By default a vertical container will hide any controls placed beyond its borders. Instead, we want to create a scrollable screen that will allow us to see those controls. To do this, select the vertical container and change its vertical overflow property to Scroll using the properties menu on the right-side of Power Apps Studio.




Add Controls To A Power Apps Scrollable Screen

The scrollable screen shows the project title, estimated hours, start date, description and skills required. We must define which record the app is currently showing and retrieve those details. Make a new text input and place it inside the titlebar with the label Project ID” beside it.



Write this code in the Default property of the text input to get the ID of the first project.

First('Projects Backlog').ID



Then insert three labels into the vertical container:

  • Project Name
  • Estimated Hours Title
  • Estimated Hours



Use this code in the Text property of the project name label to show the first project’s name.

LookUp('Projects Backlog', ID=Value(txt_ProjectID.Text), Title)




Similarly, use this code in the Text property of the estimated hours label to show the estimated hours for the first project.

LookUp('Projects Backlog', ID=Value(txt_ProjectID.Text), 'Estimated Hours')




Then add two more labels to the vertical container for:

  • Start Date title
  • Start Date



Put this code in the Text property of the start date label to display the first project’s start date.

LookUp('Projects Backlog', ID=Value(txt_ProjectID.Text), 'Start Date')




Insert An Auto-Height Label Into A Power Apps Scrollable Screen

Our scrollable screen will have a description field with several lines of text that is variable in size. If we make the description label too short some of the text might be hidden. Or if we make the description label too big there could be a large amount of whitespace. The solution is to make an auto-height label that re-sizes itself to fit the text inside it.

Insert two labels into the vertical container:

  • Description Title
  • Description



Put this code in the Text property of the description label to show the first project’s description.

LookUp('Projects Backlog', ID=Value(txt_ProjectID.Text), Description)



Then change the AutoHeight property of the label to true.

true



Now the label will extend to fit the text in the description field and a scrollbar appears on the right side of the container to allow navigation to the bottom of the screen.

The scrollable screen must also show the skills required for a project inside a gallery which contains between 1-to-4 skills. This means we need the gallery to auto-size as well. Insert a new label with the text “Skills Required” and a gallery into the vertical container.



Use this code in the Items property of the gallery to load it with the skills required for the first project.

LookUp('Projects Backlog', ID=Value(txt_ProjectID.Text), 'Skills Required')



Then use this color in the gallery’s Fill property to make it’s background light gray.

RGBA(237, 237, 237, 1)



To make the gallery re-size itself to the correct height supply this code to the Height property. It counts the number of rows and multiplies by the height of each individual row. Additional pixels are added for the padding in between each gallery row as well.

With(
  {varNumCountRows: 
   CountRows(
     LookUp(
       Projects Backlog',
       ID=Value(txt_ProjectID.Text)).'Skills Required'
  )},
  Self.TemplateHeight * varNumCountRows
  + Self.TemplatePadding * (varNumCountRows + 1)
)



Now add a label to the gallery and size it fill the entire space in each row.



Use this code in the Text property of the gallery’s label to show the skill required.

ThisItem.Value



Also, change the Fill property of the label to white to make it appear as if the skills are listed inside a table.

White

The Projects Backlog app allows the software development team to navigate away from the current project to another project in order to view its details. When the current project being viewed changes the scrollable screen must be reset back to the top.

Insert two new controls onto the screen: a button and a timer. When the controls inside a scrollable screen are hidden and then made visible the position of the scrollable becomes reset to the top. However, if this happened too quickly Power Apps will not detect that the control’s visibility was toggled. Therefore we must introduce a delay using the timer.



Put this code in the OnSelect property of the button to start the timer.

UpdateContext({locBoolStartTimer: true});



Then use this code in the following properties of the timer. The timer will delay for 0.5 seconds before setting the locBoolStartTimer variable back to false

Duration: 500
StartTimer: locBoolStartTimer
OnTimerEnd: UpdateContext({locBoolStartTimer: false})



Select all of the controls inside of the scrollable screen…



…and use this code in the Visible property.

!locBoolStartTimer



Play the app in preview more, scroll to the bottom of the screen and then click the Start Timer button. The scrollable screen will reset to the top.

Now that we know how to reset the scrollable screen screen the final step is to build our navigation menu. When the user clicks the Right icon the next record will appear. Make a new icon and place it too the right of the Project ID text input.

Also, delete the Start Timer button. It was created for testing purposes and we no longer require it.



Put this code in the OnSelect property of the right record icon. When the icon is clicked it starts the timer and increments the Project ID by one.

UpdateContext({locBoolStartTimer: true});
Set(gblNumRecordId, Value(txt_ProjectID.Text)+1);
Reset(txt_ProjectID);



To make the next record ID appear in the Project ID text input we must modify its code.



Change the Default property of the Project ID text input to this code. The text input will first look at the variable gblNumRecordId to get the Project ID. If gblNumRecordId is blank the Coalesce function allows us to fallback to the first ID found in the Projects Backlog SharePoint list.

Coalesce(gblNumRecordId, First('Projects Backlog').ID)



Next, add a Left icon to the left of the Project ID text input to allow navigation back to the previous record.



Then use this code in the OnSelect property of the left icon. Its the same as the next record icon expect the gblNumRecordId variable is decremented by 1.

UpdateContext({locBoolStartTimer: true});
Set(gblNumRecordId, Value(txt_ProjectID.Text)-1);
Reset(txt_ProjectID);



The timer must remain on the screen but we don’t want it to be visible.



Change the Visible property of the timer to false.

false



Implementing navigation is now complete. Test the app in preview mode by clicking on the navigation icon to test going to the next record and back to the previous record.





Questions?

If you have any questions or feedback about Easy Power Apps Scrollable Screen Using A Vertical Container please leave a message in the comments section below. You can post using your email address and are not required to create an account to join the discussion.

Matthew Devaney

Subscribe
Notify of
guest

21 Comments
Oldest
Newest
Inline Feedbacks
View all comments
Leandro
Leandro
2 years ago

Pretty cool, loved the timer hack. Thanks!

Duncan
Duncan
2 years ago

Matthew, are you able to scroll your screen within the PowerApps editor?
I have found that while I can scroll fine in Preview, to scroll within the editor I have to hold down Alt.

I also have weirdness when trying to select controls in that I either can’t select them or the selection box shows up in a weird position. In the screenshot, if I try to click on anything above and including label 12, it selects the canvas as a whole.

I’m doing this in a phone layout but it shouldn’t make any difference.

scrollingscreen.png
Marwane ZAIM
Marwane ZAIM
1 year ago

Hello Thank you first for your efforts and your help. Is there any possibility to make the scroll bar invisible or well designed ?

Thank you Again

Aafreen Sultana
Aafreen Sultana
1 year ago

Hi Mathew,

I have 2 forms. I want to use two forms inside vertical Container. But I see a scroll bar on both the forms. What should I set the Minimum layout height ???

Jek
Jek
1 year ago

I don’t have any questions, but I would like to say Thank you very much. This website is my go-to place as a guide in the project I’m tackling.

Thank you again, and keep up the good work.

tutu
tutu
1 year ago

Hi
 
i am trying to make a horizontal gallery scroll vertically. i have tried the reverse of your solution but i don’t get the output i require. can you help?

tutu
tutu
1 year ago
Reply to  tutu

Hi Matthew,

I have tried some many options but i can’t get the result i’m looking for. All i want is to display a multiple samples by date in a format i can pdf.

using a horizontal gallery and a vertical scroll that will automatically be readjusted based on the fields that are hidden is all i’m trying to achieve.

this has proven quite difficult. i’ll be glad if you could help cos the project is quite time sensitive

Andrew G
Andrew G
1 year ago

Solved an issue for me: how to scroll a container back to the top. It’s just a pity that Microsoft didn’t think to implement this as a simple action. A scroll to bottom would also be useful.

Last edited 1 year ago by Andrew G
David
David
6 months ago
Reply to  Andrew G

Did you use SetFocus?

Vaideeswaran
Vaideeswaran
7 months ago

Hi Matthew,

Thanks for this wonderful article. I was trying to reset the scroll bar in gallery control.

Is it possible to achieve it?

Thanks
Vaideeswaran.M

Juilien
Juilien
7 months ago

Thanks Matthew, your website is a mine of gold 🙂
What about if I want to use containers but I with a vertical scrollbar on all the screen and not only on the content container?

Sansho
Sansho
5 months ago

I want to create boxs with space in vertical container.

Screenshot 2023-10-08 220750.png