Skip to content

Commit

Permalink
remove one space
Browse files Browse the repository at this point in the history
  • Loading branch information
Lowa committed Jan 6, 2024
1 parent 891e289 commit 7c21432
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/screens/routes_details.dart
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ String? getMapUrl(Map line) {
List<Widget> getTimeTableWidgets(Map line, context, fromlocaldata) {
List<Widget> res = [];

res.add(const SizedBox(height: 15));
res.add(const SizedBox(height: 5));

if (line['timetables']['timetables'].length == 1) {
res.add(Padding(
Expand Down Expand Up @@ -194,7 +194,7 @@ List<Widget> getTimeTableWidgets(Map line, context, fromlocaldata) {
} else {
for (var timetable in line['timetables']['timetables']) {
res.add(Padding(
padding: const EdgeInsets.only(left: 10, right: 10),
padding: const EdgeInsets.only(top: 10, left: 10, right: 10),
child: ButtonLarge(
icon: NavikaIcons.clock,
text: timetable['name'],
Expand Down

0 comments on commit 7c21432

Please sign in to comment.