Skip to content

Commit

Permalink
Add line pattern to bikenet selection sheet #17
Browse files Browse the repository at this point in the history
  • Loading branch information
svendroid committed Oct 18, 2020
1 parent ac14a29 commit d4e28f4
Showing 1 changed file with 35 additions and 1 deletion.
36 changes: 35 additions & 1 deletion lib/ui/map/sheets/bikenet_selection_sheet.dart
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,20 @@ class _BikenetSelectionSheetState extends State<BikenetSelectionSheet> {
height: 0,
),
CheckboxListTile(
title: Text("Radvorrangnetz"),
title: Text("Radlvorrangnetz"),
subtitle: Row(
children: [
Container(
width: 24,
height: 4,
color: Colors.black54,
),
SizedBox(
width: 4,
),
Text('durchgezogen')
],
),
value: widget.model.isRadlvorrangnetzVisible,
onChanged: (bool value) {
widget.model.toggleRadvorrangnetzVisible();
Expand All @@ -66,6 +79,27 @@ class _BikenetSelectionSheetState extends State<BikenetSelectionSheet> {
),
CheckboxListTile(
title: Text("Gesamtnetz"),
subtitle: Row(
children: [
Container(
width: 10,
height: 4,
color: Colors.black54,
),
SizedBox(
width: 2,
),
Container(
width: 10,
height: 4,
color: Colors.black54,
),
SizedBox(
width: 4,
),
Text('gestrichelt')
],
),
value: widget.model.isGesamtnetzVisible,
onChanged: (bool value) {
widget.model.toggleGesamtnetzVisible();
Expand Down

0 comments on commit d4e28f4

Please sign in to comment.