import 'package:flutter_web/material.dart'; import 'defaults.dart'; import 'card_templates.dart'; class FeedBack extends StatefulWidget { @override _FeedBackState createState() => _FeedBackState(); } class _FeedBackState extends State { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text('feedback'), centerTitle: true, backgroundColor: navy, ), backgroundColor: peacockBlue, body: SingleChildScrollView( child: Container( padding: EdgeInsets.only(bottom: 6.0,), child: Column( children: [ infoCard('concise-pdx.com source on GitHub','https://github.com/TrentSPalmer/concise-pdx','a'), infoCard('Twitter','https://twitter.com/boringtrent','b'), infoCard('FaceBook','https://www.facebook.com/trentspalmer','c'), ], ), ), ), ); } }