mirror of
https://github.com/TrentSPalmer/concise-pdx.git
synced 2024-11-13 18:41:31 -08:00
58 lines
1.8 KiB
Dart
58 lines
1.8 KiB
Dart
import 'package:flutter_web/material.dart';
|
|
import 'dart:html' as html;
|
|
import 'defaults.dart';
|
|
import 'prebuildcards.dart';
|
|
import 'card_templates.dart';
|
|
import 'streetareas.dart';
|
|
|
|
class NorthStreets extends StatefulWidget {
|
|
@override
|
|
_NorthStreetsState createState() => _NorthStreetsState();
|
|
}
|
|
|
|
class _NorthStreetsState extends State<NorthStreets> {
|
|
void initState() {
|
|
html.window.history.pushState("","north-streets","/north-streets.html");
|
|
super.initState();
|
|
}
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
leading: Builder(
|
|
builder: (BuildContext context) {
|
|
return IconButton(
|
|
icon: Icon(Icons.arrow_back),
|
|
onPressed: () {
|
|
Navigator.pushReplacement(context, MaterialPageRoute(builder: (context) => StreetAreas()));
|
|
},
|
|
);
|
|
}
|
|
),
|
|
title: Text('walkable north streets\nwith bars-restaurants'),
|
|
centerTitle: true,
|
|
backgroundColor: navy,
|
|
actions: <Widget>[
|
|
Home(context),
|
|
],
|
|
),
|
|
backgroundColor: peacockBlue,
|
|
body: SingleChildScrollView(
|
|
child: Container(
|
|
padding: EdgeInsets.only(bottom: 6.0,),
|
|
child: Column(
|
|
children: <Widget>[
|
|
modaCenter(),
|
|
waudBluff(),
|
|
peninsulaPark(),
|
|
cardTwo('N Williams from Cook to Skidmore','https://www.google.com/maps/@45.55075,-122.6666716,16z','williams'),
|
|
cardTwo('N Mississippi from Fremont to Alberta','https://www.google.com/maps/@45.5526726,-122.6752348,16z','mississippi'),
|
|
cardTwo('N Denver from Schofield to Interstate','https://www.google.com/maps/@45.5827784,-122.687082,18z','north lombard'),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|