Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 349 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 349 Bytes

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)));
}