Skip to content

Commit

Permalink
Tweak UI
Browse files Browse the repository at this point in the history
  • Loading branch information
AhsanSarwar45 committed Jun 29, 2024
1 parent f57105b commit 37011e9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
10 changes: 9 additions & 1 deletion fastlane/metadata/android/en-US/changelogs/251.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
* Added option to turn on foreground notification to keep app alive
✨ Enhancements

* Added option to turn on foreground notification to keep app alive. Goto General > Display > Reliability > Show Foreground Notification
* Added current lap card for stopwatch. Now you can view the current lap time in real time.
* Added option to show next alarm in filters
* Updated translations

🐛 Fixes

* Fixed range schedule automatically getttin disabled


8 changes: 4 additions & 4 deletions lib/common/widgets/fields/switch_field.dart
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ class _SwitchFieldState extends State<SwitchField> {
ThemeData theme = Theme.of(context);
TextTheme textTheme = theme.textTheme;



return Material(
color: Colors.transparent,
child: InkWell(
Expand All @@ -38,14 +36,16 @@ class _SwitchFieldState extends State<SwitchField> {
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 12.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
widget.name,
style: textTheme.headlineMedium,
),
if (widget.description.isNotEmpty)
if (widget.description.isNotEmpty) ...[
const SizedBox(height: 4),
Text(widget.description, style: textTheme.bodyMedium)
],
],
),
),
Expand Down
2 changes: 1 addition & 1 deletion lib/l10n/app_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -711,6 +711,6 @@
"@showForegroundNotificationDescription": {},
"notificationPermissionDescription": "Allow notifications to be showed",
"@notificationPermissionDescription": {},
"extraAnimationSettingDescription": "Show animations that are notpolished and might cause frame drops in low-end devices",
"extraAnimationSettingDescription": "Show animations that are not polished and might cause frame drops in low-end devices",
"@extraAnimationSettingDescription": {}
}

0 comments on commit 37011e9

Please sign in to comment.