Help with ready-made blocks

Hello Kodular Community,

I hope you’re all doing well. I’m currently developing an app in Kodular that displays books, audio files, and images by fetching data from Airtable. I would greatly appreciate your help with ready-made blocks for the following features:

  1. Splash Screen

    • Show a logo or image for 3 seconds, then automatically navigate to MainScreen.
  2. MainScreen

    • Three buttons laid out clearly:

      • Books → opens BooksScreen
      • Audio → opens AudioScreen
      • Images → opens ImagesScreen
  3. Content Screens

    • BooksScreen

      • Use the Airtable component configured with:

        • ApiKey = YOUR_AIRTABLE_API_KEY
        • BaseID = YOUR_BASE_ID
        • TableName = "BooksTable"
      • Blocks to call GetColumn (or GetAllRecords), populate a ListView with book titles, and open the selected link in a WebViewer.

    • AudioScreen

      • Set Airtable.TableName to "AudioTable"
      • Populate a ListView with audio track names, then play the selected track using the Player component.
    • ImagesScreen

      • Set Airtable.TableName to "ImagesTable"
      • Retrieve image URLs and dynamically create Image components inside a VerticalScrollArrangement (or GridView) to display a gallery.

If anyone can share example block arrangements for these screens—or even a small demo .aia snippet—I would be extremely grateful. Thank you in advance for your support!

Best regards,
Mohammed

Already many ready-made blocks, guide, solutions are there. instead of waiting for ready made blocks you can search , try and learn

1 Like

A very good way to learn App Inventor or Kodular is to read the free Inventor’s Manual here in the AI2 free online eBook http://www.appinventor.org/book2 … the links are at the bottom of the Web page. The book ‘teaches’ users how to program with AI2 blocks.

There is a free programming course here http://www.appinventor.org/content/CourseInABox/Intro and the aia files for the projects in the book are here: http://www.appinventor.org/bookFiles

How to do a lot of basic things with App Inventor are described here: http://www.appinventor.org/content/howDoYou/eventHandling .

Also do the tutorials http://appinventor.mit.edu/explore/ai2/tutorials.html to learn the basics of App Inventor, then try something and follow the Top 5 Tips: How to learn App Inventor

Taifun