Font size:
Background:
Kerning:
Images:
Refresh:
Every nested structure consists of a (the outer container) and one or more Child Views (the inner components).
var titleText = new Text("Dashboard"); titleText.setColor("white"); titleText.setPosition(headerView.getX() + 10, headerView.getY() + 30); titleText.setFont("16pt Arial"); add(titleText); 2.3.9 nested views codehs
To complete this exercise correctly, your code must meet the following criteria: Every nested structure consists of a (the outer
Instead of generic div1 , div2 , use names that describe purpose: navBar , articleCard , formGroup . titleText.setPosition(headerView.getX() + 10
: Use StyleSheet.create to define a container for the parent and a box for the child.