Skip to content

Commit c60d507

Browse files
author
WooSignal
committed
Small bug fixes
1 parent 8cd7118 commit c60d507

File tree

6 files changed

+51
-55
lines changed

6 files changed

+51
-55
lines changed

LabelStoreMax/CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
* Flutter 1.17.0 support
44
* Sort by feature
55
* Cash on delivery added
6-
* RazorPay added
76
* Login/register flow change for Apple user guidelines
87
* Bug fixes
98
* Pubspec.yaml update

LabelStoreMax/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -272,8 +272,6 @@
272272
"${BUILT_PRODUCTS_DIR}/flutter_web_browser/flutter_web_browser.framework",
273273
"${BUILT_PRODUCTS_DIR}/package_info/package_info.framework",
274274
"${BUILT_PRODUCTS_DIR}/path_provider/path_provider.framework",
275-
"${PODS_ROOT}/razorpay-pod/Pod/Razorpay.framework",
276-
"${BUILT_PRODUCTS_DIR}/razorpay_flutter/razorpay_flutter.framework",
277275
"${BUILT_PRODUCTS_DIR}/shared_preferences/shared_preferences.framework",
278276
"${BUILT_PRODUCTS_DIR}/sqflite/sqflite.framework",
279277
"${BUILT_PRODUCTS_DIR}/url_launcher/url_launcher.framework",
@@ -289,8 +287,6 @@
289287
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/flutter_web_browser.framework",
290288
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/package_info.framework",
291289
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/path_provider.framework",
292-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Razorpay.framework",
293-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/razorpay_flutter.framework",
294290
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/shared_preferences.framework",
295291
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/sqflite.framework",
296292
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/url_launcher.framework",

LabelStoreMax/lib/helpers/app_themes.dart

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -14,37 +14,37 @@ import 'package:label_storemax/helpers/tools.dart';
1414

1515
TextTheme textThemeAccent() {
1616
return TextTheme(
17-
display1: new TextStyle(
17+
headline4: new TextStyle(
1818
color: Colors.black,
1919
fontFamily: appFontFamily,
2020
fontWeight: FontWeight.w800,
2121
fontSize: 26),
22-
display2: new TextStyle(
22+
headline3: new TextStyle(
2323
color: Colors.black,
2424
fontFamily: appFontFamily,
2525
fontWeight: FontWeight.w600),
26-
display3: new TextStyle(
26+
headline2: new TextStyle(
2727
color: Colors.black,
2828
fontFamily: appFontFamily,
2929
fontWeight: FontWeight.w600),
30-
display4: new TextStyle(
30+
headline1: new TextStyle(
3131
color: Colors.black,
3232
fontFamily: appFontFamily,
3333
fontWeight: FontWeight.w600),
34-
headline: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
35-
title: new TextStyle(
34+
headline5: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
35+
headline6: new TextStyle(
3636
color: Colors.black,
3737
fontFamily: appFontFamily,
3838
),
39-
subhead: new TextStyle(
39+
subtitle1: new TextStyle(
4040
color: Colors.black,
4141
fontFamily: appFontFamily,
4242
fontWeight: FontWeight.w800),
43-
body2: new TextStyle(
43+
bodyText1: new TextStyle(
4444
color: HexColor("#606060"),
4545
fontFamily: appFontFamily,
4646
fontWeight: FontWeight.w700),
47-
body1: new TextStyle(
47+
bodyText2: new TextStyle(
4848
color: HexColor("#a8a8a8"),
4949
fontFamily: appFontFamily,
5050
fontWeight: FontWeight.w700,
@@ -63,37 +63,37 @@ TextTheme textThemeAccent() {
6363

6464
TextTheme textThemePrimary() {
6565
return TextTheme(
66-
display1: new TextStyle(
66+
headline4: new TextStyle(
6767
color: Colors.black,
6868
fontFamily: appFontFamily,
6969
fontWeight: FontWeight.w800,
7070
fontSize: 26),
71-
display2: new TextStyle(
71+
headline3: new TextStyle(
7272
color: Colors.black,
7373
fontFamily: appFontFamily,
7474
fontWeight: FontWeight.w600),
75-
display3: new TextStyle(
75+
headline2: new TextStyle(
7676
color: Colors.black,
7777
fontFamily: appFontFamily,
7878
fontWeight: FontWeight.w600),
79-
display4: new TextStyle(
79+
headline1: new TextStyle(
8080
color: Colors.black,
8181
fontFamily: appFontFamily,
8282
fontWeight: FontWeight.w600),
83-
headline: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
84-
title: new TextStyle(
83+
headline5: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
84+
headline6: new TextStyle(
8585
color: Colors.black87,
8686
fontFamily: appFontFamily,
8787
fontWeight: FontWeight.w600),
88-
subhead: new TextStyle(
88+
subtitle1: new TextStyle(
8989
color: Colors.black,
9090
fontFamily: appFontFamily,
9191
fontWeight: FontWeight.w800),
92-
body2: new TextStyle(
92+
bodyText1: new TextStyle(
9393
color: HexColor("#606060"),
9494
fontFamily: appFontFamily,
9595
fontWeight: FontWeight.w700),
96-
body1: new TextStyle(
96+
bodyText2: new TextStyle(
9797
color: HexColor("#a8a8a8"),
9898
fontFamily: appFontFamily,
9999
fontWeight: FontWeight.w700,
@@ -112,18 +112,18 @@ TextTheme textThemePrimary() {
112112

113113
TextTheme textThemeMain() {
114114
return TextTheme(
115-
display1: new TextStyle(
115+
headline4: new TextStyle(
116116
color: Colors.black,
117117
fontFamily: appFontFamily,
118118
),
119-
display2: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
120-
display3: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
121-
display4: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
122-
headline: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
123-
title: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
124-
subhead: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
125-
body2: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
126-
body1: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
119+
headline3: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
120+
headline2: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
121+
headline1: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
122+
headline5: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
123+
headline6: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
124+
subtitle1: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
125+
bodyText1: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
126+
bodyText2: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
127127
caption: new TextStyle(
128128
color: Colors.redAccent, fontSize: 16, fontFamily: appFontFamily),
129129
button: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
@@ -132,18 +132,18 @@ TextTheme textThemeMain() {
132132

133133
TextTheme textThemeAppBar() {
134134
return TextTheme(
135-
display1: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
136-
display2: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
137-
display3: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
138-
display4: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
139-
headline: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
140-
title: new TextStyle(
135+
headline4: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
136+
headline3: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
137+
headline2: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
138+
headline1: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
139+
headline5: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
140+
headline6: new TextStyle(
141141
color: Colors.black,
142142
fontFamily: appFontFamily,
143143
fontWeight: FontWeight.w900),
144-
subhead: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
145-
body2: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
146-
body1: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
144+
subtitle1: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
145+
bodyText1: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
146+
bodyText2: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
147147
caption: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
148148
button: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
149149
);

LabelStoreMax/lib/labelconfig.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const app_payment_methods = ["Stripe"];
6060
// Your StripeAccount key from WooSignal
6161
// link: https://woosignal.com/dashboard
6262

63-
const app_stripe_account = "Your StripeAccount from WooSignal";
63+
const app_stripe_account = "Your Stripe Key from WooSignal";
6464

6565
const app_stripe_live_mode = false;
6666
// For Live Payments follow the below steps

LabelStoreMax/pubspec.lock

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ packages:
4242
name: cached_network_image
4343
url: "https://pub.dartlang.org"
4444
source: hosted
45-
version: "2.2.0"
45+
version: "2.2.0+1"
4646
charcode:
4747
dependency: transitive
4848
description:
@@ -98,7 +98,7 @@ packages:
9898
name: device_info
9999
url: "https://pub.dartlang.org"
100100
source: hosted
101-
version: "0.4.2+2"
101+
version: "0.4.2+3"
102102
dio:
103103
dependency: "direct main"
104104
description:
@@ -300,7 +300,7 @@ packages:
300300
name: path_provider_macos
301301
url: "https://pub.dartlang.org"
302302
source: hosted
303-
version: "0.0.4+1"
303+
version: "0.0.4+2"
304304
path_provider_platform_interface:
305305
dependency: transitive
306306
description:
@@ -314,7 +314,7 @@ packages:
314314
name: pedantic
315315
url: "https://pub.dartlang.org"
316316
source: hosted
317-
version: "1.8.0+1"
317+
version: "1.9.0"
318318
petitparser:
319319
dependency: transitive
320320
description:
@@ -370,14 +370,14 @@ packages:
370370
name: shared_preferences
371371
url: "https://pub.dartlang.org"
372372
source: hosted
373-
version: "0.5.7"
373+
version: "0.5.7+1"
374374
shared_preferences_macos:
375375
dependency: transitive
376376
description:
377377
name: shared_preferences_macos
378378
url: "https://pub.dartlang.org"
379379
source: hosted
380-
version: "0.0.1+7"
380+
version: "0.0.1+8"
381381
shared_preferences_platform_interface:
382382
dependency: transitive
383383
description:
@@ -391,7 +391,7 @@ packages:
391391
name: shared_preferences_web
392392
url: "https://pub.dartlang.org"
393393
source: hosted
394-
version: "0.1.2+4"
394+
version: "0.1.2+5"
395395
sky_engine:
396396
dependency: transitive
397397
description: flutter
@@ -410,14 +410,14 @@ packages:
410410
name: sqflite
411411
url: "https://pub.dartlang.org"
412412
source: hosted
413-
version: "1.3.0"
413+
version: "1.3.0+1"
414414
sqflite_common:
415415
dependency: transitive
416416
description:
417417
name: sqflite_common
418418
url: "https://pub.dartlang.org"
419419
source: hosted
420-
version: "1.0.0+1"
420+
version: "1.0.1"
421421
stack_trace:
422422
dependency: transitive
423423
description:
@@ -508,7 +508,7 @@ packages:
508508
name: url_launcher_web
509509
url: "https://pub.dartlang.org"
510510
source: hosted
511-
version: "0.1.1+2"
511+
version: "0.1.1+4"
512512
uuid:
513513
dependency: transitive
514514
description:

LabelStoreMax/pubspec.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,12 @@
88
# 1 Open: "lib/labelconfig.dart"
99

1010
### Change App Icon
11-
# 1 Open: assets/icon/appicon.png (line 53) replace icon (1024px1024px icon size)
11+
# 1 Replace: assets/icon/appicon.png (1024px1024px icon size)
1212
# 2 Run this command from Terminal: flutter pub run flutter_launcher_icons:main
1313

14-
### Submitting the IOS/Android app
15-
# 1 Open our online documentation: https://woosignal.com/docs/app/ios/label-storemax
14+
### Uploading the IOS/Android app
15+
# IOS https://flutter.dev/docs/deployment/ios
16+
# Android https://flutter.dev/docs/deployment/android
1617

1718
name: label_storemax
1819
description: LabelStoreMAX

0 commit comments

Comments
 (0)