Allcancode Platform v5
  • Introduction
  • Getting started
  • Managing projects
    • The list of projects
    • Creating a project
    • Sharing projects with teams
    • Basic project settings
  • Creating UI layouts
    • The container
    • Basic components
    • Creating a component
    • Working with layout properties
    • Working with styling properties
    • Building responsive layouts
  • Writing frontend logic
    • Introducing Blockly
    • Handling data
      • Session
      • Variable
    • Binding inputs to data
    • Binding text to data
    • Visualizing a list
    • Handling events
    • Navigating between pages/screens
    • Sharing data between pages/screens/components
    • Using native components
    • Creating native components
    • Creating a library of functions
  • Creating a backend
    • Defining endpoints
    • Creating a library of backend functions
  • Testing and debugging
    • Previewing a web application
    • Previewing a mobile app
    • The build log
    • The debug panel
  • How-to Guides
    • Sync code with git
      • Sync with GitHub
      • Sync with Gitlab
      • Sync with Bitbucket
    • Publish web applications
      • Publish web apps to Vercel
      • Publish web apps to Netlify
    • Publish mobiles apps
      • Publish mobile apps to stores
      • Publish mobile apps to Expo Go
      • mobile app with Expo
    • Implementing authentication
    • Implementing authorization
    • Supporting multilingual UIs
  • Release Notes
    • Release notes
Powered by GitBook
On this page

Was this helpful?

  1. Creating UI layouts

Basic components

PreviousThe containerNextCreating a component

Last updated 1 year ago

Was this helpful?

During the layout making process we use some default components that help us build the page or our custom component.

You can see the list of basic components when you hit the arrow button as you can see in the image below.

When you hit that arrow button then you can see a list with all the basic components you can use. Those components are, container, row container, column container, image, text, input field, text area, drop down list and button.

  • Container : We use the container in order to add inside all the information we want to include

  • Row container : Its like container but with default settings, display : flex and direction : row

  • Column container : Its like container but with default settings, display : flex and direction : column

  • Image : You use it when you want to include an image/icon in your page

  • Text : You use it when you want to include text in your page

  • Input field : You use it when you want the user to write some text ( its only for one line )

  • Text area : Its also an input field but the user can write more than one line

  • Drop down list : Its an input drop down

  • Button

You can put them into your project by clicking on them

Basic Components List