Skip to main content

How to create a new project in Sketchware

 So you've downloaded Sketchware and you arent sure where to start. This article will explain how to create a new project in Sketchware. After you have logged in, the first screen will look like the one below. This might vary depending on the screensize but I'm sure you get the idea.

Sketchware home screen

The above picture shows the Sketchware home screen. Here you will find a list of your new projects. If you are a new user, then it might be blank... so just click where the arrow is pointing and create a new project. If the picture above isn't clear, click on it... I'm sure it will be clearer.

Give your app an identity


The new Project screen is where you can name your project and upload an icon. This will be the publicly displayed name of your app. This can be changed at any time. 

You can also change the app icon on this screen. If you want to change your app icon click where it says tap to change icon. This can also be changed at any time.





Advanced settings


You can customize your app even more by adding your own color palette. Click the blue circle with a question mark if you are not sure which part each color applies to.




Package name


You can also change your package name. Package names usually come in this format:

com.my.appname

You can also customize your app name in the following way.

com.mycompanyname.appname
or
com.firstname.appname


Project Name


This is the name of your project. You can change this to your app name. It does not allow any spaces so you can capitalize the first letter of your word. This will help you identify your projects. You can leave it unchanged if you want.

Once you're done naming and giving your app an image, you can now Click the Create app button.

That will create a new project and take you to the screen below.

The Sketchware project screen

I have highlighted the 5 key sections of the Sketchware project screen. These are:

1. Views
On your view screen there are 2 sections.

a. Layouts

b. Widgets

2. Events

3. Components


Understanding the Sketchware project screen elements


There are 3 items on the top menu. View, Event and Component. 


VIEW




The *view* is how your app will look. This is what your user will see. So you can drag components such as a textview and position them on that screen on the right. Then simply click *RUN* at the bottom of the screen. It will create and install an app on your phone. You have created a simple app with whatever you dragged onto the screen. 

EVENT




These are the various points at which the user interacts with your app. For example onStart is what happens when that specific activity starts. onButtonClick is what happens when the user clicks so on. So this is where we will be doing the programming of our app. We will be writing code the same way someone would do it on Android studio but the difference is we will be using blocks. 


COMPONENTS




These add additional functionality to your app. For example if you want to move to the next screen or to open another app, you create an intent component Don't worry about memorizing what each of these does. For now just get an appreciation of the app. You will grasp most of the stuff as you do it.


LAYOUTS


Sketchware layouts

In this image you will notice that there are Layouts and Widgets. Layouts will determine how items will look on your screen. 

Linear H (Horizontal) Layout


this will allow you to put things side by side.

Linear V (Vertical) Layout


this will allow you to put things on top of each other.

Scroll H (Horizontal)


will allow you to place things side by side.

Scroll V (Vertical)


will allow you to scroll up and down if the stuff does not fit on your screen.

WIDGETS

Sketchware widgets

These allow you to add key features to your app. 

Textview


this will display words or a sentence

Edittext


this allows a user to enter words e.g. when entering a username or a password

Button


if you want to add a button to your app

Imageview


this can be used to display images on the screen

Listview


this helps display items in a list and it is a key component of chat apps. For now we will stop there






Comments

Popular posts from this blog

Hip hop and RnB songs to apologize to your partner

Love is a beautiful thing, but it often goes wrong. This often leads to pain, suffering and sorrow.  Being imperfect beings, hearts tend to get broken all the time regardless how hard we may try to avoid it.  The heartbreak is often inadvertent but at times we find ourselves in the wrong. An oversight, a word unsaid or even a lapse in our judgement can cause our loved ones harm. This doesn't always have to be the end though. Oftentimes, relationships can be mended by simply uttering three simple words: "I AM SORRY". This article is a collection of some of my favourite 'I'm sorry' songs. I hope you'll enjoy these apology songs, but more importantly, I hope you will get a few quotables and some wisdom nuggets from them.  The best apology however, is to change behaviour (got that from a Jay Z interview) so as you apologize, please remember that it was your actions that hurt them. The best apology is one which involves you not repeating those same mistakes aga

Php date: How to get the first and last day of the week

In this tutorial, I'll show you how to get the first and last day of the week in php. By default, in PHP the week runs from Monday to Sunday. However we'll cover two methods to get the first and last day for both those who consider Sunday or Monday as their first day of the week. We will be using 2 functions to achieve this: date() strtotime() We will use a combination of these two functions and store the result in a variable.  How to get the first day of the week If you want to get Sunday, use this method: $firstday = date('l Y-m-d', strtotime("sunday -1 week")); echo $firstday; If you want to get the date for Monday, this current week, use this method: $monday = date('l Y-m-d', strtotime("monday -1 week ")); echo $monday; How to get the last day of the week The following code will give you Saturday as the last day of the current week. $lastday = date('l Y-m-d', strtotime("saturday 0 week")); echo $last

How to easily create background notifications in Sketchware(original)

How to easily create background notifications in Sketchware(original) One of the keys to building a successful app is to find mechanisms that will keep your users engaged. You can do this by using background notifications. This tutorial will show you how to do that in Sketchware. We will cover: 1. How to create notifications in Sketchware 2. How to show these notifications even when the app is closed.