2019-08-31 11:21:42 -07:00
|
|
|
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<FeedBack> {
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
2019-08-31 12:11:39 -07:00
|
|
|
title: Text('feedback'),
|
2019-08-31 11:21:42 -07:00
|
|
|
centerTitle: true,
|
|
|
|
backgroundColor: navy,
|
|
|
|
),
|
|
|
|
backgroundColor: peacockBlue,
|
|
|
|
body: SingleChildScrollView(
|
|
|
|
child: Container(
|
|
|
|
padding: EdgeInsets.only(bottom: 6.0,),
|
|
|
|
child: Column(
|
|
|
|
children: <Widget>[
|
|
|
|
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'),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|