cover

Flutter Hello World #

This is one of simplest program of the flutter purpose of this program is show Hello, World! but remember styles will be ugly.

As this program is made simple so that we need to write less code and confirm if we are able to run it by ourself or not.

main.dart
import 'package:flutter/material.dart';

void main(){
    runApp(
      Text('Hello, World'),
    );
}

Please don’t worry about the style of the app.

comments powered by Disqus