mirror of
https://github.com/TrentSPalmer/concise-pdx.git
synced 2024-11-14 02:51:29 -08:00
59 lines
2.2 KiB
Dart
59 lines
2.2 KiB
Dart
import 'package:flutter_web/material.dart';
|
|
import 'defaults.dart';
|
|
import 'card_templates.dart';
|
|
|
|
class SellwoodStreets extends StatefulWidget {
|
|
@override
|
|
_SellwoodStreetsState createState() => _SellwoodStreetsState();
|
|
}
|
|
|
|
class _SellwoodStreetsState extends State<SellwoodStreets> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: Text('walkable sellwood streets\nwith bars-restaurants'),
|
|
centerTitle: true,
|
|
backgroundColor: navy,
|
|
actions: <Widget>[
|
|
IconButton(
|
|
icon: Icon(Icons.home),
|
|
onPressed: () {
|
|
Navigator.of(context).popUntil((route) => route.isFirst);
|
|
},
|
|
),
|
|
],
|
|
),
|
|
backgroundColor: peacockBlue,
|
|
body: SingleChildScrollView(
|
|
child: Container(
|
|
padding: EdgeInsets.only(bottom: 6.0,),
|
|
child: Column(
|
|
children: <Widget>[
|
|
cardTwo('Woodstock','https://example.com','woodstock'),
|
|
cardTwo('Bybee','https://example.com','bybee'),
|
|
cardTwo('Milwaukie','https://example.com','milwaukie'),
|
|
cardTwo('SE 13th','https://example.com','13th'),
|
|
cardTwo('Tacoma','https://example.com','tacoma'),
|
|
convenienceCardOne(
|
|
'https://www.portlandoregon.gov/parks/finder/index.cfm?&action=ViewPark&propertyid=27',
|
|
'crystal-springs-rhododendron-garden',
|
|
'This area of town is convenient for Crystal Springs Rhododendron Garden',
|
|
'https://www.google.com/maps/@45.479722,-122.635556,17z',
|
|
'crystal-springs-rhododendron-garden-map'
|
|
),
|
|
convenienceCardOne(
|
|
'https://www.alltrails.com/trail/us/oregon/springwater-on-the-wilamette-north-woodland-and-bluff-trail-loop',
|
|
'springwater-on-the-willamette-trail',
|
|
'This area of town is near the Springwater on the Willamette Trail',
|
|
'https://www.google.com/maps/@45.4762318,-122.6616333,16z',
|
|
'springwater-on-the-willamette-trail-map'
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|