BlankTemplate
The BlankTemplate
app is a template for any MIT App Inventor app. Every app should include a Debug HorizontalArrangement
that contains a Reset Button
and a Debug Label
. The purpose of the Reset Button
is to set the app into a known initial state. Typically Screen1.Initialize
and ButtonReset.Click
both invoke a reset procedure so that the app is in a known initial state without having to restart it. When the app is completed, simply make the Debug HorizontalArrangement
not visible
.
Button
invokes the reset procedure, which is a stub. It simply sets the sets the Debug Label
to text showing the Screen1.Width
and Screen1.Height
properties — so that it does something visible. Change it to initialize all components and global variables.All components retain their default properties, — except Width
and Height
set to Fill parent...
where necessary to center UX components.
🔗 permalink, 🔩 repository, and .AIA
for this page.