Posts

Showing posts with the label Visual Studio Code editor

Create a Simple "Hello World" application using Flutter SDk

Image
What you'll learn in this Section How to create a flutter project using command prompt. Material design package that we going to use to develop this beautiful application in Android. Definition of Stateless Widget. Step: 1 Let's create a Simple Hello World Project using Command Prompt Open your command prompt on clicking the Windows button and type CMD or CTRL + R to open the Run application in your windows and type CMD to open Command Prompt. Once Command Prompt has been open, type the following command like this "flutter create your_project_name". Finally, We have created a simple flutter project. Step: 2 Creating a simple "Hello World" Application Go to the lib directory and open main.dart file using your code editor tool which we discussed in another blog post. Main.dart is the start point of the flutter application everything you write goes into here. Before developing the application let's understand the basics In flutter, everything is Widget, eve...