Skip to content

Commit

Permalink
🔖 Release version 2.12.7+152
Browse files Browse the repository at this point in the history
  • Loading branch information
iqfareez committed Jan 18, 2025
1 parent 705318d commit 632331f
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 52 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
![Flutter](https://img.shields.io/badge/Flutter-%2302569B.svg?style=flat-square&logo=Flutter&logoColor=white)
![Android](https://img.shields.io/badge/Android-3DDC84?style=flat-square&logo=android&logoColor=white)
[![Ready on PWA](https://img.shields.io/badge/Ready%20on-PWA-5a0fc8?style=flat-square)](https://waktusolat.web.app/)
![Maintenance](https://img.shields.io/maintenance/yes/2024?style=flat-square)
![Maintenance](https://img.shields.io/maintenance/yes/2025?style=flat-square)
[![Installs](https://img.shields.io/badge/installs-50k+-informational?style=flat-square)](https://play.google.com/store/apps/details?id=live.iqfareez.waktusolatmalaysia)
![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/mptwaktusolat/app_waktu_solat_malaysia?style=flat-square)
![License](https://img.shields.io/github/license/mptwaktusolat/app_waktu_solat_malaysia?style=flat-square)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
android:ellipsize="end"
android:gravity="end"
android:maxLines="1"
android:text="18/05/2024"
android:text="28/6/2025"
android:textAlignment="gravity"
android:textColor="?attr/colorOnPrimaryContainer"
android:textSize="14sp" />
Expand Down
22 changes: 3 additions & 19 deletions lib/features/kompas_kiblat/views/qibla_page.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import 'package:admonitions/admonitions.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
Expand Down Expand Up @@ -31,25 +32,8 @@ class _QiblaPageState extends State<QiblaPage> {
children: [
Align(
alignment: Alignment.topCenter,
child: Container(
padding: const EdgeInsets.all(14),
margin: const EdgeInsets.all(14),
decoration: BoxDecoration(
color: Colors.amber.withOpacity(.3),
borderRadius: BorderRadius.circular(16)),
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
const FaIcon(FontAwesomeIcons.circleInfo),
const SizedBox(width: 15),
Flexible(
child: Text(
AppLocalizations.of(context)!.qiblaOverheadWarn,
// textAlign: TextAlign.center,
),
),
],
),
child: PastelAdmonition.caution(
text: AppLocalizations.of(context)!.qiblaOverheadWarn,
),
),
Align(
Expand Down
2 changes: 1 addition & 1 deletion lib/views/prayer_full_table.dart
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class PrayerFullTable extends StatelessWidget {
Uri.https(envApiBaseHost, '/api/mosque/$_locationCode')
.toString(),
fit: BoxFit.cover,
color: Colors.black.withOpacity(0.7),
color: Colors.black.withValues(alpha: 0.7),
colorBlendMode: switch (Theme.of(context).brightness) {
Brightness.light => BlendMode.dstATop,
Brightness.dark => BlendMode.multiply,
Expand Down
6 changes: 3 additions & 3 deletions lib/views/settings/about_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class AboutAppPage extends StatelessWidget {
],
),
const Text(
'\nMPT 2024',
'\nMalaysia Prayer Time',
textAlign: TextAlign.center,
),
GestureDetector(
Expand All @@ -126,7 +126,7 @@ class AboutAppPage extends StatelessWidget {
Container(
padding: const EdgeInsets.all(8),
decoration: BoxDecoration(
color: Theme.of(context).bottomAppBarTheme.color,
color: Theme.of(context).colorScheme.secondaryContainer,
borderRadius: BorderRadius.circular(10)),
child: MarkdownBody(
data: AppLocalizations.of(context)!.aboutJakim,
Expand Down Expand Up @@ -256,7 +256,7 @@ class AboutAppPage extends StatelessWidget {
url: 'https://iqfareez.com'),
child: Text(
AppLocalizations.of(context)!
.aboutLegalese("2020-2024"),
.aboutLegalese("2020-2025"),
style: Theme.of(context).textTheme.labelMedium,
textAlign: TextAlign.center,
),
Expand Down
33 changes: 7 additions & 26 deletions lib/views/settings/troubleshoot_notif.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import 'package:admonitions/admonitions.dart';
import 'package:app_settings/app_settings.dart';
import 'package:auto_start_flutter/auto_start_flutter.dart';
import 'package:flutter/material.dart';
Expand Down Expand Up @@ -32,7 +33,12 @@ class TroubleshootNotif extends StatelessWidget {
return const SizedBox.shrink();
}

return const _DeviceOKAdmonition();
return PastelAdmonition.tip(
text: AppLocalizations.of(context)!.notifTsAdmonition,
icon: FaIcon(
FontAwesomeIcons.check,
),
);
},
),
MarkdownBody(
Expand Down Expand Up @@ -67,28 +73,3 @@ class TroubleshootNotif extends StatelessWidget {
);
}
}

class _DeviceOKAdmonition extends StatelessWidget {
const _DeviceOKAdmonition();

@override
Widget build(BuildContext context) {
return Container(
padding: const EdgeInsets.all(14),
margin: const EdgeInsets.only(bottom: 10),
decoration: BoxDecoration(
color: Colors.green.withOpacity(.3),
borderRadius: BorderRadius.circular(16)),
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
const FaIcon(FontAwesomeIcons.check),
const SizedBox(width: 15),
Flexible(
child: Text(AppLocalizations.of(context)!.notifTsAdmonition),
)
],
),
);
}
}
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: App waktu solat seluruh Malaysia

publish_to: "none" # Remove this line if you wish to publish to pub.dev

version: 2.12.6+151
version: 2.12.7+152

environment:
sdk: ">=3.0.0 <4.0.0"
Expand Down

0 comments on commit 632331f

Please sign in to comment.