Skip to content

Commit

Permalink
🚀 Release beta III 1.12.65+33
Browse files Browse the repository at this point in the history
  • Loading branch information
iqfareez committed Jan 23, 2021
1 parent fb2d5c5 commit 76a43fd
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
18 changes: 16 additions & 2 deletions lib/views/Settings part/AboutPage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class AboutAppPage extends StatelessWidget {
padding: EdgeInsets.all(8.0),
children: [
Text(
'For dev (Api call history)',
'Debug dialog (for dev)',
textAlign: TextAlign.center,
),
ListTile(
Expand Down Expand Up @@ -96,7 +96,21 @@ class AboutAppPage extends StatelessWidget {
ListTile(
title: Text('Global location index'),
subtitle: Text(
'${GetStorage().read(kStoredGlobalIndex)}'))
'${GetStorage().read(kStoredGlobalIndex)}')),
ListTile(
title: Text('Last update notification'),
subtitle: Text(GetStorage()
.read(kStoredLastUpdateNotif)
.toString()),
onLongPress: () {
Clipboard.setData(ClipboardData(
text: GetStorage()
.read(kStoredLastUpdateNotif)
.toString()))
.then((value) => Fluttertoast.showToast(
msg: 'Copied millis'));
},
),
],
),
),
Expand Down
1 change: 0 additions & 1 deletion lib/views/Settings part/NotificationSettingPage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import 'package:flutter/material.dart';
import 'package:get_storage/get_storage.dart';
import '../../CONSTANTS.dart';
import '../../utils/cupertinoSwitchListTile.dart';
import '../../utils/prayerName.dart';

class NotificationPageSetting extends StatefulWidget {
@override
Expand Down
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: 1.12.61+32
version: 1.12.65+33

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

0 comments on commit 76a43fd

Please sign in to comment.