How To Display ‘Hello World’ in Flutter.

DevOps

YOUR COSMETIC CARE STARTS HERE

Find the Best Cosmetic Hospitals

Trusted • Curated • Easy

Looking for the right place for a cosmetic procedure? Explore top cosmetic hospitals in one place and choose with confidence.

“Small steps lead to big changes — today is a perfect day to begin.”

Explore Cosmetic Hospitals Compare hospitals, services & options quickly.

✓ Shortlist providers • ✓ Review options • ✓ Take the next step with confidence

To Display “Hello World” in Flutter, just Follow the Below Steps.

Step 1:- First of all, Import material.dart package library.

import ‘package:flutter/material.dart’;Code language: JavaScript (javascript)

Step 2:- Now, we call our main method.

void main() { }Code language: JavaScript (javascript)

Step 3:- Under main() we perform all our operations. So, Under main() we call runApp() in which we use Widgets to perform any operation.

Step 4 :- Now, we call CentreWidget under runApp() method [ To show text in centre ] in which we take Text Widget as child, and in text widget lets pass a Welcome Message “Hello World“.

Step 5 :- Now, we add Direction to our Text Widget otherwise it returns error. See Below the Text Widget

child: Text(“Hello World”, textDirection: TextDirection.ltr,)Code language: CSS (css)

All Done. Now we are Ready to run our project But before that, please match your code with mine to not get any Error. See Below :-

See Output Below

Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x