For the complete documentation index, see llms.txt. This page is also available as Markdown.

01 Flutter: Hello World

Displaying Hello World on the screen

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

void main() {
  runApp(
    new Center(
      child: new Text(
        'Hello, world!'
      ),
    ),
  );
}

Hello World app using a Stateless widget

Last updated