Select Page

List View & A Booking App On App Inventor

ListView component allows you to display a list/group of text items on a screen. If you are here for List tutorial, please visit this extensive List tutorial. Today we are going to create an app utilizing ListView, a simple booking app. The name of our glorious app...

Website Viewer On App Inventor

App Inventor has a component called WebViewer. We can load a webpage/website into an app using WebViewer component. To do that, we can just drag the WebViewer component to Screen1 window and set the HomeUrl property of the WebViewer to the webpage we want to view when...

Procedure With Result On App Inventor

Procedure with result block is very handy when you need to do something multiple times. This will save you time as you don’t need to repeat the same procedure many times. Also it’s hard to keep track of multiple global variables. This will help you keep...