Guest User

Untitled

a guest
Dec 14th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. @override
  2. Widget build(BuildContext context) {
  3. return Scaffold(
  4. appBar: AppBar(
  5. title: Text(widget.title),
  6. ),
  7. body: SingleChildScrollView(
  8. child: Text("😱🤕",
  9. textScaleFactor: 3.0,
  10. textAlign: TextAlign.center,
  11. softWrap: true,
  12. style: TextStyle(
  13. fontWeight: FontWeight.w400,
  14. color: Colors.black,
  15. )
  16. ),
  17. ),
  18. floatingActionButton: FloatingActionButton(
  19. onPressed: _incrementCounter,
  20. tooltip: 'Increment',
  21. child: Icon(Icons.add),
  22. ),
  23. );
  24. }
Add Comment
Please, Sign In to add comment