Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2.  
  3. class About extends StatelessWidget {
  4. @override
  5. Widget build(BuildContext context) {
  6. return Scaffold(
  7. appBar: new AppBar(
  8. elevation: 0.1,
  9. backgroundColor: Colors.red,
  10. title: Text('About This Application'),
  11. ),
  12. body: Container(
  13. height:600.0,
  14. child : new Text(
  15. "This is a mobile application to promote local arts and crafts.",style: TextStyle(color: Colors.red,),
  16. )
  17. ),
  18. );
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement