Flutter is a framework created in 2017 by Eric Seidel.
| #196on PLDB | 9Years Old |
git clone https://github.com/flutter/flutterFlutter is an open-source mobile application development framework created by Google. It is used to develop applications for Android and iOS, as well as being the primary method of creating applications for Google Fuchsia.. Read more on Wikipedia...
import 'package:flutter/widgets.dart';
void main() {
runApp(
Text(
'Hello World',
textDirection: TextDirection.ltr,
),
);
}