2019-09-04 16:21:32 -07:00
|
|
|
import 'package:flutter_web/material.dart';
|
2019-11-04 01:21:25 -08:00
|
|
|
import 'dart:html' as html;
|
2019-09-04 16:21:32 -07:00
|
|
|
import 'defaults.dart';
|
|
|
|
import 'card_templates.dart';
|
|
|
|
import 'prebuildcards.dart';
|
|
|
|
import 'washingtonpark.dart';
|
2019-11-04 01:21:25 -08:00
|
|
|
import 'northweststreets.dart';
|
2019-09-04 16:21:32 -07:00
|
|
|
|
|
|
|
class NorthWestStreetsSights extends StatefulWidget {
|
|
|
|
@override
|
|
|
|
_NorthWestStreetsSightsState createState() => _NorthWestStreetsSightsState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _NorthWestStreetsSightsState extends State<NorthWestStreetsSights> {
|
2019-11-04 01:21:25 -08:00
|
|
|
void initState() {
|
|
|
|
html.window.history.pushState("","northwest-streets-sights","/northwest-streets-sights.html");
|
|
|
|
super.initState();
|
|
|
|
}
|
2019-09-04 16:21:32 -07:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
2019-11-04 01:21:25 -08:00
|
|
|
leading: Builder(
|
|
|
|
builder: (BuildContext context) {
|
|
|
|
return IconButton(
|
|
|
|
icon: Icon(Icons.arrow_back),
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.pushReplacement(context, MaterialPageRoute(builder: (context) => NorthWestStreets()));
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
),
|
2019-09-04 16:21:32 -07:00
|
|
|
title: Text('northwest-pdx-sights'),
|
|
|
|
centerTitle: true,
|
|
|
|
backgroundColor: navy,
|
|
|
|
actions: <Widget>[
|
2019-11-04 01:21:25 -08:00
|
|
|
Home(context),
|
2019-09-04 16:21:32 -07:00
|
|
|
],
|
|
|
|
),
|
|
|
|
backgroundColor: peacockBlue,
|
|
|
|
body: SingleChildScrollView(
|
|
|
|
child: Container(
|
|
|
|
padding: EdgeInsets.only(bottom: 6.0,),
|
|
|
|
child: Column(
|
|
|
|
children: <Widget>[
|
|
|
|
macleayParkPittockMansion(),
|
|
|
|
convenienceCardOne(
|
|
|
|
'https://en.wikipedia.org/wiki/Providence_Park',
|
|
|
|
'providence-park',
|
|
|
|
'This area of town is convenient for a football, baseball, or soccer game at Providence park',
|
|
|
|
'https://www.google.com/maps/@45.521389,-122.691667,17z',
|
|
|
|
'providence-park-map'
|
|
|
|
),
|
|
|
|
InkWell(
|
2019-11-04 01:21:25 -08:00
|
|
|
onTap: (){
|
|
|
|
Navigator.pushReplacement(context, MaterialPageRoute(builder: (context) => WashingtonPark()));
|
2019-09-04 16:21:32 -07:00
|
|
|
},
|
|
|
|
child: cardOne('Visit the Zoo, Rose Garden, Hoyt Arboretum, Pittock Mansion, and Japanese Garden at WashingtonPark.'),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|