@titanium/turbo
Version:
🚀 Turbo is the awesome framework for turbo charging your Titanium cross-platform native mobile app development!
18 lines (15 loc) • 480 B
text/xml
<Alloy>
<!-- create a global reference to the journal collection -->
<Collection src="journal"/>
<NavigationWindow>
<Window title="Journal">
<RightNavButton>
<Button onClick="addEntry">add entry</Button>
</RightNavButton>
<!-- render each journal entry as an instance of the required view -->
<ScrollView id="scroll" dataCollection="journal" dataTransform="doTransform">
<Require src="entry"/>
</ScrollView>
</Window>
</NavigationWindow>
</Alloy>