import 'package:flutter/material.dart'; class Support extends StatelessWidget { @override Widget build (BuildContext context) => new Scaffold( //App Bar appBar: new AppBar( title: new Text( 'Support', style: new TextStyle( fontSize: Theme.of(context).platform == TargetPlatform.iOS ? 17.0 : 20.0, ), ), elevation: Theme.of(context).platform == TargetPlatform.iOS ? 0.0 : 4.0, ), //Content of tabs body: new PageView( children: [ new Column( mainAxisAlignment: MainAxisAlignment.center, children: [ new Text('Support page content'), ], ) ], ), ); }