Hey there, We are Blossom Themes! We are trying to provide you the new way to look and use the blogger templates. Our designers are working hard and pushing the boundaries of possibilities to widen the horizon of the regular templates and provide high quality blogger templates to all hardworking bloggers!
In this post, I am sharing the code to make a simple Calculator with the main 4 functions - add, subtract, multiply, and subtract: Source Code : import 'dart:io' ; void main () { print ( 'This is a Calculator! \n ' ); print ( '''Commands: add => + subtract => - multiply => * divide => /''' ); calculation (); } void calculation () { stdout. writeln ( 'First Number:' ); var num1 = int . parse (stdin. readLineSync ()); stdout. writeln ( 'Second Number:' ); var num2 = int . parse (stdin. readLineSync ()); stdout. writeln ( 'Command' ); var comm = stdin. readLineSync (); if (comm == '+' ) { num res = num1 + num2; print ( 'The Result is $ res ' ); } else if (comm == '-' ) { num res = num1 - num2; print ( 'The Result is $ res ' ); } else if (comm == '*' ) { num res = num1 * num2; print ( 'The Result is $ r...
With the new iOS 14 update and the now-old Android 10 update, both Google and Apple stole some features from each and other. Want to know which are those features? Scroll down! iOS from Android Picture in Picture : This feature was available in Android on TVs and the old-2017 Oreo update, but came to iOS only in the new version. But Apple does it better with a hiding option. Widgets : Widgets was the one of the biggest change in iOS 14 which was already available from the first day of Android. Still the widgets are only from Apple apps and only support 3 sizes while on the Android side, the feature is widely used by 3rd party apps and can be resized as your wish. App Clips : This new feature on iOS means that you can use short version of apps without downloading but by scanning a code or using NFC tags. A similar feature is on Android named instant apps. App drawer or the ' App library' : Oh, we all know it! Available on Android from the first version. Default Apps : Still not ...
Following the ban on Chinese apps, you might be trying to find alternatives. In this post, I am giving you top 3 free alternatives to UC Browser. No 1: Google Chrome Google Chrome is Google's own Mobile Web browser. It comes pre installed on most Android smartphones. It is an excellent alternative to UC Browser with features like: Quick results & instant pages from recent AutoFill Incognito mode Desktop site request Discover Google Safe Browsing And many more... Get it here: https://play.google.com/store/apps/details?id=com.android.chrome No 2: Mozilla Firefox
Requirements You will need these to get started A Google Account A mobile device Now make sure that you either have a mobile browser installed on your device, or go ahead and download the ‘Google Search’ app from your App store How to create a People card on Google Here are the steps to create your own People card. Open the Google search app or visit this page in your mobile browser. Either search for your name or search for ‘Add me to search’. You can also do the same by opening Google Assistant and saying ‘Add me to search’. When the search results appear, you will see a ‘Add yourself to Google Search’ box at the top. Here, tap on the ‘Get started’. After you have selected the account you want to host your People card with from the options, you will be taken to the ‘Create a public card’ page. By default, this public card will already have your name and profile picture added to the relevant sections. To successfully create a People card, Google wants you to fill out y...
Flutter: What is it? How to make awesome Apps! Flutter is an opensource UI and Software development kit made by Google. This just means that it is a type of a tool to make applications or softwares for Android, iOS, Linux, Mac, Windows and Google Fucshia which is just starting out (in development). Flutter can also be used to write webapps or websites. Flutter uses a programming language called Dart, which was also made by Google , for, you know, coding. And if you have been searching 'Flutter' for while, you should have heard of widget. So in flutter, everything is a widget. Widgets are the building blocks of every flutter application. You put different widgets like Scaffold, Container, etc together to make User Interfaces (UIs). Flutter and Dart Flutter apps are written using Dart Programming Language. Dart is pretty easy to learn and two write. If you need a comparison, here is the same code written in C++,Java, and Dart- Input Code for taking i...