Posts

Showing posts from July, 2020

Difference between Invisible and Gone in Sketchware

Image
1. Invisible If you set anything as Invisible  in Sketchware, it will hide but still take up space 2. Gone If you set anything Gone , it will hide and don't take up space too Hope you found this helpful!

Using Firebase database for getting data from user in Sketchware

Image
1. Setup Firebase 2. Add a edittext,a button, a firebase Db component Db, a map variable map. 3. In button onClick event, add blocks as shown below 4. Save and run the project the data will be added in you Firebase Database.

Display YouTube videos on Sketchware App

Image
1. Copy the code below( View on Github ) data:text/html, <iframe width="100%" height="100%" src="http://www.youtube.com/embed/3DSrJos_Ick" frameborder="0"></iframe> 2. In place of  3DSrJos_Ick  add the id of YouTube video. 3. To get video id go to youtube and copy video url Example:https://youtu.be/ 3DSrJos_Ick You can see the dark part of video url is video id. 4. Add a webview and change its width to match parent and hieght to 325. 5. Add a block webview loadurl block in onCreate and choose a webview then paste the code in loadurl 6. Save and run the project.

Firebase Login/Register with email verification

Image
To verify the email address of a user registered in your firebase app in Sketchware, follow the steps given below. 1. Follow the Signup/login creating tutorial  Here 2. Create a extra button in login page with text " Send Verification Email ". 3. In the event of on signin user complete of component of Firebase auth, add code given below( View on Github ). emailVerified = fauth.getCurrentUser().isEmailVerified(); 4. In event of button Send Verification Email ,add code given below with an add source directly Block( View on Github ).   fauth.getCurrentUser().sendEmailVerification().addOnCompleteListener(new OnCompleteListener<Void>() { @Override public void onComplete(Task<Void> task) { if (task.isSuccessful()) { showMessage("Email sent."); } else { showMessage ("Error sending email");} } }); 5. Save and run the project.

How to make a browser in sketchware

Image
1. Go to Sketchware and make a new project. 2. Make a Signup/login  (optional) 3. Add a edittext and a webview. 4. Go to on create event. Make intent component with name Jd. 5. In onCreate. Add Loadurl block for webview 6. In loadurl enter url www.Google.com/search 7. Go to event of ontext changed(edittext1) 8. Do same as done in 5th step. 9. In webview1 loadurl add edittext1 get text

How to use request network for webview in Sketchware

Image
To create a network error for webview in Sketchware, follow steps given below. 1. In onCreate event add block(s) as shown below Note: This tutorial requires an request network component. 2. In onResponse, add blocks as given below. In this image in first view block is empty choose the webview there. In second block thats textview used for showing "connecting to server". 3. On error response. Follow same but in place of gone set it visible and set textview set text "no connection". That's all. Save and run the projects

How to display YouTube videos on blogger site

Image
1. Signin to your blogger account on blogger.com 2. go to post editor in html view paste the embeded video code 3. go to youtube.com in desktop site 4. tap share>embeded and copy it 5. follow 2nd step Thanks! Video tutorial:

How to get Sketchware project without signing

Image
Its very simple. Open your file manager search for .sketchware and now open which is in /storage/emulated/0/. Then tap mysc in mysc you will be able to see bin. Tap it and list of your projects will be visible to you. With name (example)601. Find the number of your project and open it. You will be able to see runed apk file there. You can also directly search your project name. Thanks! Video tutorial:

Chat app project in Sketchware

Image
A chat app by Sketchware King. Made with Sketchware. App name is We Chat and can be downloaded from here👇 https://bit.ly/2BcUqa6 And to know more too visit same site or watch  This  ðŸ‘‡

Popular posts from this blog

How to make edittext in dialog in Sketchware

How to use request network for webview in Sketchware

How to make a browser in sketchware