Advertisement
Guest User

masjid.dart

a guest
Oct 14th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2.  
  3. class Masjid extends StatelessWidget {
  4. @override
  5. Widget build(BuildContext context) {
  6. return new Container(
  7. child: new Center(
  8. child: Column(
  9. children: <Widget>[
  10. new Padding(
  11. padding: new EdgeInsets.all(20.0),
  12. ),
  13. new Padding(
  14. padding: new EdgeInsets.all(20.0),
  15. ),
  16. new Icon(
  17. Icons.masjid,
  18. size: 90.0,
  19. color: Colors.lightBlueAccent,
  20. ),
  21. new Text(
  22. "JADWAL SHOLAT",
  23. style: new TextStyle(fontSize: 30.0, color: Colors.lightGreen),
  24. )
  25. ],
  26. ),
  27. ),
  28. );
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement