Skip to content

Commit

Permalink
Update bikenetselection titles and add descriptions #34
Browse files Browse the repository at this point in the history
  • Loading branch information
svendroid committed Jan 17, 2021
1 parent 7d6e81b commit a49e39b
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions lib/ui/map/sheets/bikenet_selection_sheet.dart
Original file line number Diff line number Diff line change
Expand Up @@ -54,20 +54,23 @@ class _BikenetSelectionSheetState extends State<BikenetSelectionSheet> {
height: 0,
),
CheckboxListTile(
title: Text("RadlVorrang-Netz"),
subtitle: Row(
title: Row(
children: [
Text('RadlVorrang-Netz'),
SizedBox(
width: 8,
),
Container(
width: 24,
height: 4,
color: Colors.black54,
),
SizedBox(
width: 4,
),
Text('durchgezogen')
],
),
contentPadding: EdgeInsets.all(16),
isThreeLine: true,
subtitle: Text(
"Radentscheid München Ziel 2. Es basiert auf den ausgeschilderten Radwegen und wird gemäß den Zielen des Radentscheides entsprechend aktualisiert und erweitert."),
value: widget.model.isRadlvorrangnetzVisible,
onChanged: (bool value) {
widget.model.toggleRadvorrangnetzVisible();
Expand All @@ -78,9 +81,14 @@ class _BikenetSelectionSheetState extends State<BikenetSelectionSheet> {
height: 0,
),
CheckboxListTile(
title: Text("Gesamtnetz"),
subtitle: Row(
isThreeLine: true,
contentPadding: EdgeInsets.all(16),
title: Row(
children: [
Text("Anbindung alle Strecken"),
SizedBox(
width: 8,
),
Dot(),
SizedBox(
width: 2,
Expand All @@ -91,11 +99,13 @@ class _BikenetSelectionSheetState extends State<BikenetSelectionSheet> {
),
Dot(),
SizedBox(
width: 4,
width: 2,
),
Text('gepunktet')
Dot(),
],
),
subtitle: Text(
'Alle Straßen und Wege, auf denen man mit dem Rad fahren kann.'),
value: widget.model.isGesamtnetzVisible,
onChanged: (bool value) {
widget.model.toggleGesamtnetzVisible();
Expand Down

0 comments on commit a49e39b

Please sign in to comment.