Skip to content

Instantly share code, notes, and snippets.

@tetujin
Created December 11, 2021 13:57
Show Gist options
  • Save tetujin/b68cd83634c55030d7a990c2c07b9df7 to your computer and use it in GitHub Desktop.
Save tetujin/b68cd83634c55030d7a990c2c07b9df7 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
void main() {
runApp(
const Center(
child: Text(
'Hello, world!',
textDirection: TextDirection.ltr,
style: TextStyle(
color: Colors.blue,
fontSize: 20,
fontWeight: FontWeight.bold,
),
),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment