Flutter Hello World App Code

Creating a hello world app in flutter.


import 'package:flutter/material.dart';

void main() {
  runApp(
    MaterialApp(
      home: Center(
        child: Text('Hello World'),
      ),
    ),
  );
}

About the Author: smartcoder

You might like

Leave a Reply

Your email address will not be published. Required fields are marked *