Skip to main content

How i make my own apps without any coding

Meet 'Sable', A closed community app I created with my phone

Have you ever wondered if it was possible to create your own app without any coding experience?

Well I've got some great news for you... it's possible. It's actually very easy and you can do it using your own phone. Yes, I'm talking about a real app. You can literally create an app in minutes and I'll show you exactly how. 

Depending on the nature and complexity of your app, this can take from just a few minutes up to several weeks. 

As our lives become more digital we find ourselves spending more time using our mobile devices. This makes apps an integral part of our lives. So in addition to being a cool skill to have, app development also allows you to easily solve common problems and in some cases, can provide a comfortable living.


For the record, I was a finance major and I had no prior programming experience when I started. Using my phone I've created numerous apps and some are on the Playstore. My pride is the Business Builder App, which has over 100000 users. So I'm pretty sure you can do it too.


Here's an app I created on my phone


I create my own apps using an app called Sketchware and in this article I'll give an explanation of how to do it. I'll also provide a few links to some tutorials on how to make your own app as well. 

Let's get into it...


Sketchware

Sketchware is an android app that creates other apps. Unlike most online app makers, Sketchware allows you to build the app you want instead of simply customizing a pre-determined template. It provides the flexibility to create a broad range of apps with minimal coding. You can download Sketchware here

How Sketchware works

1. Drag and drop

Using Sketchware's drag and drop features you can build your own custom app and run it on your device in minutes. The example below shows a screen where I dragged two edittext fields and a textview.


2. Customize

Each widget has it's own properties which can be customized. Whenever you place a widget on your screen these properties will appear at the bottom of your screen. The image below shows the properties. The weight property makes your widget responsive to screen size.


3. Set up your logic

You can also create complex logic and algorithms on Sketchware using simple block programming. This logic is placed in 'events'. Events are the various points at which your user interacts with your app. For example when the app starts for the first time, that event is called onCreate. When it stops, it's called onStop and when a button is clicked it's called onClick.... simple right? The image below shows an IF-ELSE block that toasts(shows) a different message under different conditions. This has been placed onCreate.


4. Power up your app with components

Components add additional functionality and features to your app. Sketchware comes with numerous components that you can add to your project to make it even more fun or useful. The image below shows the various components that you can add to your project.


5. Install your app in minutes

When you're done creating your app you can either save your project or run it on your device. This will install it on your phone and it takes about a minute if not less. 


If you're happy with your creation, you can send it directly to Playstore from the Sketchware app. Sketchware also comes with easy Admob integration so you can monetize your app with ease.

Conclusion

Building your own app is easier than you might think and you can do it even without any programming experience. Despite being simplified, Sketchware is a powerful tool for building all kinds of apps. You need to think logically and with enough time you will be making awesome apps.

If you would like to get started using Sketchware then check out the following tutorials:

Create a new project in Sketchware

Create your own record keeping app

• Create your own social media app

You can also check out the tutorials section at the top of this page








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...

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.

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...