Skip to content

Instantly share code, notes, and snippets.

@zontyp
Last active April 28, 2020 08:14
Show Gist options
  • Save zontyp/8a8ebbb6a921721dcde8b69e1eda7ff9 to your computer and use it in GitHub Desktop.
Save zontyp/8a8ebbb6a921721dcde8b69e1eda7ff9 to your computer and use it in GitHub Desktop.
Flutter Hello World
import 'package:flutter/material.dart';
void main() {
runApp(
Text(
'Hello, world!',
textDirection: TextDirection.ltr,
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment