Skip to content

Instantly share code, notes, and snippets.

@vladnicula
Created May 29, 2021 07:45
Show Gist options
  • Save vladnicula/df2e147d03211268b6fff39165f7b073 to your computer and use it in GitHub Desktop.
Save vladnicula/df2e147d03211268b6fff39165f7b073 to your computer and use it in GitHub Desktop.
Hello Flutter 01
import 'package:flutter/material.dart';
void main() {
runApp(
Center(
child: Text(
'Hello, world!',
textDirection: TextDirection.ltr,
),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment