Skip to content

Instantly share code, notes, and snippets.

@rickyngan
Last active June 11, 2020 18:02
Show Gist options
  • Save rickyngan/5ed443f18fbd82c63e8e61d3efe4f9f3 to your computer and use it in GitHub Desktop.
Save rickyngan/5ed443f18fbd82c63e8e61d3efe4f9f3 to your computer and use it in GitHub Desktop.
2020 Jun 13 HoC HK Flutter: 3_hello_widget
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