mirror of
https://github.com/TrentSPalmer/concise-pdx.git
synced 2024-11-14 02:51:29 -08:00
36 lines
976 B
Dart
36 lines
976 B
Dart
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(
|
|
title: Text('feedback'),
|
|
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'),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|