Guest User

Untitled

a guest
Apr 22nd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2.  
  3. void main() => runApp(new MyApp());
  4.  
  5. class MyApp extends StatelessWidget {
  6. Widget build(BuildContext context) {
  7. return new SizedBox(
  8. width: 200.0,
  9. height: 300.0,
  10. child: new Card(
  11. color: Colors.red,
  12. child: new Directionality(
  13. child: const Text('Hello World!'),
  14. textDirection: TextDirection.ltr,
  15. ),
  16. ),
  17. );
  18. }
  19. }
Add Comment
Please, Sign In to add comment