Skip to content

Instantly share code, notes, and snippets.

@MarcioQuimbundo
Created April 4, 2019 13:54
Show Gist options
  • Save MarcioQuimbundo/63d56fd08ea0992bb40aec0c554798f6 to your computer and use it in GitHub Desktop.
Save MarcioQuimbundo/63d56fd08ea0992bb40aec0c554798f6 to your computer and use it in GitHub Desktop.
import 'package:flutter/widgets.dart';
main() => runApp(
Directionality(
textDirection: TextDirection.ltr,
child: Center(
child: Text(
'Olá, Mundo!!!',
),
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment