Flutter Hello world application
Hello Developers, I have posted my previous post about flutter installation and basic difference, so today we will start the implementation of flutter. Flutter Hello World App To start with flutter web development, first of all, we will set up or VS Code IDE to make compatible with flutter development this isn't mandatory but this will help you for rapid development. Adding flutter extension to VS Code IDE Open VS Code Go to Extension by clicking below icon Now search for flutter you will get following list then click on install Now your extension is ready to use Create a hello world app with CLI Run following command to create app with CLI $flutter create hello_world This will create a basic app for you. App structure will be as follows: So over there will be a lib folder where we will invest time more to develop our application. If you see the main.dart file this will be our entry point for our application. You can remove the auto-generated file and write down the f...