⚠️ This lesson is retired and might contain outdated information.

Make a Grid Layout Using GridLayouts

Brad Martin
InstructorBrad Martin
Share this video with your friends

Social Share Links

Send Tweet
Published 7 years ago
Updated 2 years ago

We will use the GridLayout component to create a layout container that can span any number of rows and columns. This allows us to create very complex UIs in a NativeScript app.

[00:00] Start by adding a grid layout to your page. The grid layout has two properties that are essential for laying out the child views, rows and columns. We're going to set our first row to a height of 40, and the second row to a height of auto.

[00:20] We'll set our first column to a width of 100, second column is going to use *, and this will indicate that anything in that column will consume the entire space. We'll have a third column with a width of 100 also. We need to fill this with a few view components.

[00:40] We'll start with a button with the text set to Hello. Now we have to specify where we want it to show in the grid. We're going to use the row property, and we'll set it equal to 0for the first row. This button's going to be 40 high because it's in the first row.

[00:59] We'll set the col property, which is for the column, to 0which is also the first column, so it's going to be 100 wide. We'll run this and we'll just one button show up into the view, here it is, it's 100 wide because it's in the first column, and it's 40 high because the first row is set to 40.

[01:20] Let's keep adding a few items here to see how to layout more views inside of the grid. We'll also position this button on the first row, but we're going to set it in the second column, and then we're going to add another button, set it on the same row, but it's going to be the third column.

[01:47] We'll run this, we'll have three buttons left to right. Hello, Goodbye, and [inaudible] . They're specified with the row and col properties, and you'll notice this Goodbye in the second column fills all space, so the Goodbye button is as wide as the second column due to the * value.

[02:09] Let's go here, and we're going to add an image, and we're going to put this image on the second row. The source is going to be the Egghead logo, and we're going to set it on the second row, but we're going to use the colspan property.

[02:25] What this allows us to do is specify an item to fill more than one column. It's going to be 3, so this image is going to fill all three columns on our grid layout. Run this, you'll see the Egghead logo, it' filling the entire grid's columns due to the colspan property, and it's on the second row.

[02:47] We could flip this, put it on the first row, change these buttons to the second row, the order doesn't matter inside of the grid, what matters is the row and col properties, when you specify them. Let's change this to 100. We run this, the image will be on top, and it's now only 100 high because of the row having 100 set to the height of the first row.

[03:17] There's also the rowspan property if you want an item to fill multiple rows, you could also use that, and you could technically get rid of that. Now this image is going to fill two rows and three columns, which we have declared. It's going to fill the entire grid at this point, once we run it.

egghead
egghead
~ 13 minutes ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today