Skip to content

Commit

Permalink
feat: reverted some changes for system demo. (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
rawi-coding committed Nov 1, 2024
1 parent cb6a246 commit 3744ed6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class FahrbildTable extends StatelessWidget {
bottomMargin: sbbDefaultSpacing * 2,
border: const TableBorder(
bottom: BorderSide(width: 1.0, color: SBBColors.cloud),
horizontalInside: BorderSide(width: 1, color: SBBColors.cloud),
horizontalInside: BorderSide(width: 0.3, color: SBBColors.cloud),
),
columns: columns,
rows: rows,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class TrainJourney extends StatelessWidget {
) {
return FahrbildTable(
columns: [
_dataColumn('', fixedWidth: 10), // Used for height workaround
_dataColumn('', fixedWidth: 0), // Used for height workaround
_dataColumn('km', fixedWidth: 80, centerLabel: false),
_dataColumn('an/ab', fixedWidth: 100, centerLabel: false),
_dataColumn('', fixedWidth: 48), // route line
Expand All @@ -76,7 +76,7 @@ class TrainJourney extends StatelessWidget {
active: index == 1,
km: '10.2',
bpName: tp?.attributes['TP_ID'] ?? 'Unknown',
track: 'E25\nTest\nTest',
track: 'E25',
time: _parseTime(timingPoint),
);
}),
Expand Down

0 comments on commit 3744ed6

Please sign in to comment.