Skip to content

Latest commit

 

History

History

hello

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Hello app

"Hello" is a simple static layout demonstration for Anvil.

screenshot

Here's the full code of the layout:

public ViewNode view() {
	return
		v(FrameLayout.class,
			size(FILL, FILL),

			v(TextView.class,
				size(WRAP, WRAP).gravity(CENTER),
				text(R.string.hello)));
}