about.dart 712 B

123456789101112131415161718192021222324252627282930
  1. import 'package:flutter/material.dart';
  2. class About extends StatelessWidget {
  3. @override
  4. Widget build (BuildContext context) => new Scaffold(
  5. //App Bar
  6. appBar: new AppBar(
  7. title: new Text(
  8. 'About',
  9. style: new TextStyle(
  10. fontSize: Theme.of(context).platform == TargetPlatform.iOS ? 17.0 : 20.0,
  11. ),
  12. ),
  13. elevation: Theme.of(context).platform == TargetPlatform.iOS ? 0.0 : 4.0,
  14. ),
  15. //Content of tabs
  16. body: new PageView(
  17. children: <Widget>[
  18. new Column(
  19. mainAxisAlignment: MainAxisAlignment.center,
  20. children: <Widget>[
  21. new Text('About page content')
  22. ],
  23. )
  24. ],
  25. ),
  26. );
  27. }