From a8bed966592aa8541319b5e66ebac9881f1e9957 Mon Sep 17 00:00:00 2001 From: Anurag Roy <44899587+RoyARG02@users.noreply.github.com> Date: Sun, 25 Oct 2020 13:56:41 +0530 Subject: [PATCH] Add Flutter (#858) --- README.md | 3 ++- f/flutter.dart | 10 ++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 f/flutter.dart diff --git a/README.md b/README.md index 03bbd00e..321c92d8 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Thanks to everyone who continues to contribute; new languages are created every Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contributing to the project! -## Languages (694 total) +## Languages (698 total) * [05Ab1E](%23/05AB1E) * [0815](%23/0815.0815) @@ -278,6 +278,7 @@ Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contrib * [Fjoelnir](f/fjoelnir.fjo) * [Flascript](f/flascript.fls) * [Flask](f/flask.py) +* [Flutter](f/flutter.dart) * [Fob](f/fob.fob) * [Focal](f/focal.fc) * [Fog.Fog](f/fog.fog.md) diff --git a/f/flutter.dart b/f/flutter.dart new file mode 100644 index 00000000..d1ecac9c --- /dev/null +++ b/f/flutter.dart @@ -0,0 +1,10 @@ +import 'package:flutter/widgets.dart'; + +void main() { + runApp( + Text( + 'Hello World', + textDirection: TextDirection.ltr, + ), + ); +}