G.frege를 너무 사랑하는 holy가...

[flutter] flutter.dev2-User Interface-introduction-hello world

[ document summary ]
    Title: [flutter] flutter.dev2-User Interface-introduction-hello world
    date: 2023 9.12
    content: User interface's introduction

Hello world

import 'package:flutter/material.dart';

void main() {
  runApp(
    const Center(
      child: Text(
        'Hello, world!',
        textDirection: TextDirection.ltr,
      ),
    ),
  );