import 'package:flutter/material.dart'; void main() => runApp(new Center(
child: new Text(
'Hello, world!',
textDirection: TextDirection.ltr,
textAlign: TextAlign.center,
maxLines: ,
overflow: TextOverflow.ellipsis,
style: TextStyle(fontSize: 80.0, color: Colors.yellow),
)));