Skip to main content

Posts

Showing posts from April, 2020

Create a Temperature Converter Application In sketchware

Temperature Converter Application Using Sketchware   Watch the above video if you get stuck ! :) 1)Create the following layout.The image below shows the app UI. The app has got an Edittext at the top. Below the Edittext there is a Horizontal Linear Layout . Inside the Linear Layout ,two Buttons are placed . One is Convert Button and the other is to Swap . 2)Create a Variable named c .On onCreate event , set the variable c to 0 as shown in the  screenshot       below   3) Navigate to the onClick event of Button .Here you have to place an if else block.    The if else block first checks whether the variable c is zero or not . If the value of variable c is               zero , then the app converts the temperture input from celsius to fahrenheit . If the value is one , then the input fahrenheit value is converted to celsius . Refer the screenshot below to add further blocks 4) Next Navigate to onClick event of the Swap Button

Did you like this tutorial ?