Skip to content

Commit

Permalink
Merge branch 'main' into prod/festapp
Browse files Browse the repository at this point in the history
  • Loading branch information
miakh committed Nov 16, 2024
2 parents 4ca255f + ea96413 commit f07fc3b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions lib/components/timeline/ScheduleTimeline.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import 'package:easy_localization/easy_localization.dart';
import 'package:flutter/material.dart';
import 'package:fstapp/components/timeline/ScheduleTimelineHelper.dart';
import 'package:fstapp/styles/StylesConfig.dart';
Expand Down Expand Up @@ -55,7 +56,7 @@ class _ScheduleTimelineState extends State<ScheduleTimeline> {
children.add(
Center(
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 48.0),
padding: const EdgeInsets.symmetric(vertical: 38.0),
child: TextButton.icon(
onPressed: () {
widget.onAddNewEvent?.call(context, widget.eventGroups);
Expand All @@ -64,7 +65,7 @@ class _ScheduleTimelineState extends State<ScheduleTimeline> {
Icons.add_circle_outline,
size: 24,
),
label: const Text("Add new event"),
label: const Text("Add New Event").tr(),
style: TextButton.styleFrom(
foregroundColor: ThemeConfig.timelineAddNewEventColor(context),
padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 12),
Expand Down
2 changes: 1 addition & 1 deletion lib/pages/EventEditPage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ class _EventEditPageState extends State<EventEditPage> {
),
bottomNavigationBar: Container(
color: ThemeConfig.appBarColor(),
padding: const EdgeInsets.all(16.0),
padding: const EdgeInsets.all(8.0),
child: Row(
mainAxisAlignment: MainAxisAlignment.end,
children: [
Expand Down

0 comments on commit f07fc3b

Please sign in to comment.