Skip to content

Instantly share code, notes, and snippets.

@Medvedoc
Created August 9, 2020 17:10
Show Gist options
  • Save Medvedoc/efb6e757ba43697795f78a8367c263dd to your computer and use it in GitHub Desktop.
Save Medvedoc/efb6e757ba43697795f78a8367c263dd to your computer and use it in GitHub Desktop.
My_tasks_Flutter
import 'package:flutter/material.dart';
void main() {
runApp(
Center(
child: Text(
'Hello Flutter',
style: TextStyle(
fontSize: 40,
color: Colors.red,
fontWeight: FontWeight.w900,
),
textDirection: TextDirection.ltr,
),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment