Guest User

Untitled

a guest
Apr 26th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2.  
  3. void main() {
  4. runApp(new Container(
  5. color: Colors.amber,
  6. child: new Center(
  7. child: new Text(
  8. 'Hello World',
  9. textDirection: TextDirection.ltr,
  10. ),
  11. ),
  12. ));
  13. }
Add Comment
Please, Sign In to add comment