Skip to content

Instantly share code, notes, and snippets.

@zontyp
Last active April 28, 2020 07:48
Show Gist options
  • Save zontyp/8ef405399c55b861ee3f60b8f0d75373 to your computer and use it in GitHub Desktop.
Save zontyp/8ef405399c55b861ee3f60b8f0d75373 to your computer and use it in GitHub Desktop.
Hello Flutter Center
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