Small bug fixes

This commit is contained in:
WooSignal 2020-05-08 16:06:38 +01:00
parent 8cd7118b0b
commit c60d5072fd
6 changed files with 51 additions and 55 deletions

View File

@ -3,7 +3,6 @@
* Flutter 1.17.0 support * Flutter 1.17.0 support
* Sort by feature * Sort by feature
* Cash on delivery added * Cash on delivery added
* RazorPay added
* Login/register flow change for Apple user guidelines * Login/register flow change for Apple user guidelines
* Bug fixes * Bug fixes
* Pubspec.yaml update * Pubspec.yaml update

View File

@ -272,8 +272,6 @@
"${BUILT_PRODUCTS_DIR}/flutter_web_browser/flutter_web_browser.framework", "${BUILT_PRODUCTS_DIR}/flutter_web_browser/flutter_web_browser.framework",
"${BUILT_PRODUCTS_DIR}/package_info/package_info.framework", "${BUILT_PRODUCTS_DIR}/package_info/package_info.framework",
"${BUILT_PRODUCTS_DIR}/path_provider/path_provider.framework", "${BUILT_PRODUCTS_DIR}/path_provider/path_provider.framework",
"${PODS_ROOT}/razorpay-pod/Pod/Razorpay.framework",
"${BUILT_PRODUCTS_DIR}/razorpay_flutter/razorpay_flutter.framework",
"${BUILT_PRODUCTS_DIR}/shared_preferences/shared_preferences.framework", "${BUILT_PRODUCTS_DIR}/shared_preferences/shared_preferences.framework",
"${BUILT_PRODUCTS_DIR}/sqflite/sqflite.framework", "${BUILT_PRODUCTS_DIR}/sqflite/sqflite.framework",
"${BUILT_PRODUCTS_DIR}/url_launcher/url_launcher.framework", "${BUILT_PRODUCTS_DIR}/url_launcher/url_launcher.framework",
@ -289,8 +287,6 @@
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/flutter_web_browser.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/flutter_web_browser.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/package_info.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/package_info.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/path_provider.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/path_provider.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Razorpay.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/razorpay_flutter.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/shared_preferences.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/shared_preferences.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/sqflite.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/sqflite.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/url_launcher.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/url_launcher.framework",

View File

@ -14,37 +14,37 @@ import 'package:label_storemax/helpers/tools.dart';
TextTheme textThemeAccent() { TextTheme textThemeAccent() {
return TextTheme( return TextTheme(
display1: new TextStyle( headline4: new TextStyle(
color: Colors.black, color: Colors.black,
fontFamily: appFontFamily, fontFamily: appFontFamily,
fontWeight: FontWeight.w800, fontWeight: FontWeight.w800,
fontSize: 26), fontSize: 26),
display2: new TextStyle( headline3: new TextStyle(
color: Colors.black, color: Colors.black,
fontFamily: appFontFamily, fontFamily: appFontFamily,
fontWeight: FontWeight.w600), fontWeight: FontWeight.w600),
display3: new TextStyle( headline2: new TextStyle(
color: Colors.black, color: Colors.black,
fontFamily: appFontFamily, fontFamily: appFontFamily,
fontWeight: FontWeight.w600), fontWeight: FontWeight.w600),
display4: new TextStyle( headline1: new TextStyle(
color: Colors.black, color: Colors.black,
fontFamily: appFontFamily, fontFamily: appFontFamily,
fontWeight: FontWeight.w600), fontWeight: FontWeight.w600),
headline: new TextStyle(color: Colors.black, fontFamily: appFontFamily), headline5: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
title: new TextStyle( headline6: new TextStyle(
color: Colors.black, color: Colors.black,
fontFamily: appFontFamily, fontFamily: appFontFamily,
), ),
subhead: new TextStyle( subtitle1: new TextStyle(
color: Colors.black, color: Colors.black,
fontFamily: appFontFamily, fontFamily: appFontFamily,
fontWeight: FontWeight.w800), fontWeight: FontWeight.w800),
body2: new TextStyle( bodyText1: new TextStyle(
color: HexColor("#606060"), color: HexColor("#606060"),
fontFamily: appFontFamily, fontFamily: appFontFamily,
fontWeight: FontWeight.w700), fontWeight: FontWeight.w700),
body1: new TextStyle( bodyText2: new TextStyle(
color: HexColor("#a8a8a8"), color: HexColor("#a8a8a8"),
fontFamily: appFontFamily, fontFamily: appFontFamily,
fontWeight: FontWeight.w700, fontWeight: FontWeight.w700,
@ -63,37 +63,37 @@ TextTheme textThemeAccent() {
TextTheme textThemePrimary() { TextTheme textThemePrimary() {
return TextTheme( return TextTheme(
display1: new TextStyle( headline4: new TextStyle(
color: Colors.black, color: Colors.black,
fontFamily: appFontFamily, fontFamily: appFontFamily,
fontWeight: FontWeight.w800, fontWeight: FontWeight.w800,
fontSize: 26), fontSize: 26),
display2: new TextStyle( headline3: new TextStyle(
color: Colors.black, color: Colors.black,
fontFamily: appFontFamily, fontFamily: appFontFamily,
fontWeight: FontWeight.w600), fontWeight: FontWeight.w600),
display3: new TextStyle( headline2: new TextStyle(
color: Colors.black, color: Colors.black,
fontFamily: appFontFamily, fontFamily: appFontFamily,
fontWeight: FontWeight.w600), fontWeight: FontWeight.w600),
display4: new TextStyle( headline1: new TextStyle(
color: Colors.black, color: Colors.black,
fontFamily: appFontFamily, fontFamily: appFontFamily,
fontWeight: FontWeight.w600), fontWeight: FontWeight.w600),
headline: new TextStyle(color: Colors.black, fontFamily: appFontFamily), headline5: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
title: new TextStyle( headline6: new TextStyle(
color: Colors.black87, color: Colors.black87,
fontFamily: appFontFamily, fontFamily: appFontFamily,
fontWeight: FontWeight.w600), fontWeight: FontWeight.w600),
subhead: new TextStyle( subtitle1: new TextStyle(
color: Colors.black, color: Colors.black,
fontFamily: appFontFamily, fontFamily: appFontFamily,
fontWeight: FontWeight.w800), fontWeight: FontWeight.w800),
body2: new TextStyle( bodyText1: new TextStyle(
color: HexColor("#606060"), color: HexColor("#606060"),
fontFamily: appFontFamily, fontFamily: appFontFamily,
fontWeight: FontWeight.w700), fontWeight: FontWeight.w700),
body1: new TextStyle( bodyText2: new TextStyle(
color: HexColor("#a8a8a8"), color: HexColor("#a8a8a8"),
fontFamily: appFontFamily, fontFamily: appFontFamily,
fontWeight: FontWeight.w700, fontWeight: FontWeight.w700,
@ -112,18 +112,18 @@ TextTheme textThemePrimary() {
TextTheme textThemeMain() { TextTheme textThemeMain() {
return TextTheme( return TextTheme(
display1: new TextStyle( headline4: new TextStyle(
color: Colors.black, color: Colors.black,
fontFamily: appFontFamily, fontFamily: appFontFamily,
), ),
display2: new TextStyle(color: Colors.black, fontFamily: appFontFamily), headline3: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
display3: new TextStyle(color: Colors.black, fontFamily: appFontFamily), headline2: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
display4: new TextStyle(color: Colors.black, fontFamily: appFontFamily), headline1: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
headline: new TextStyle(color: Colors.black, fontFamily: appFontFamily), headline5: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
title: new TextStyle(color: Colors.black, fontFamily: appFontFamily), headline6: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
subhead: new TextStyle(color: Colors.black, fontFamily: appFontFamily), subtitle1: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
body2: new TextStyle(color: Colors.black, fontFamily: appFontFamily), bodyText1: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
body1: new TextStyle(color: Colors.black, fontFamily: appFontFamily), bodyText2: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
caption: new TextStyle( caption: new TextStyle(
color: Colors.redAccent, fontSize: 16, fontFamily: appFontFamily), color: Colors.redAccent, fontSize: 16, fontFamily: appFontFamily),
button: new TextStyle(color: Colors.black, fontFamily: appFontFamily), button: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
@ -132,18 +132,18 @@ TextTheme textThemeMain() {
TextTheme textThemeAppBar() { TextTheme textThemeAppBar() {
return TextTheme( return TextTheme(
display1: new TextStyle(color: Colors.black, fontFamily: appFontFamily), headline4: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
display2: new TextStyle(color: Colors.black, fontFamily: appFontFamily), headline3: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
display3: new TextStyle(color: Colors.black, fontFamily: appFontFamily), headline2: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
display4: new TextStyle(color: Colors.black, fontFamily: appFontFamily), headline1: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
headline: new TextStyle(color: Colors.black, fontFamily: appFontFamily), headline5: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
title: new TextStyle( headline6: new TextStyle(
color: Colors.black, color: Colors.black,
fontFamily: appFontFamily, fontFamily: appFontFamily,
fontWeight: FontWeight.w900), fontWeight: FontWeight.w900),
subhead: new TextStyle(color: Colors.black, fontFamily: appFontFamily), subtitle1: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
body2: new TextStyle(color: Colors.black, fontFamily: appFontFamily), bodyText1: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
body1: new TextStyle(color: Colors.black, fontFamily: appFontFamily), bodyText2: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
caption: new TextStyle(color: Colors.black, fontFamily: appFontFamily), caption: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
button: new TextStyle(color: Colors.black, fontFamily: appFontFamily), button: new TextStyle(color: Colors.black, fontFamily: appFontFamily),
); );

View File

@ -60,7 +60,7 @@ const app_payment_methods = ["Stripe"];
// Your StripeAccount key from WooSignal // Your StripeAccount key from WooSignal
// link: https://woosignal.com/dashboard // link: https://woosignal.com/dashboard
const app_stripe_account = "Your StripeAccount from WooSignal"; const app_stripe_account = "Your Stripe Key from WooSignal";
const app_stripe_live_mode = false; const app_stripe_live_mode = false;
// For Live Payments follow the below steps // For Live Payments follow the below steps

View File

@ -42,7 +42,7 @@ packages:
name: cached_network_image name: cached_network_image
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "2.2.0" version: "2.2.0+1"
charcode: charcode:
dependency: transitive dependency: transitive
description: description:
@ -98,7 +98,7 @@ packages:
name: device_info name: device_info
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.4.2+2" version: "0.4.2+3"
dio: dio:
dependency: "direct main" dependency: "direct main"
description: description:
@ -300,7 +300,7 @@ packages:
name: path_provider_macos name: path_provider_macos
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.0.4+1" version: "0.0.4+2"
path_provider_platform_interface: path_provider_platform_interface:
dependency: transitive dependency: transitive
description: description:
@ -314,7 +314,7 @@ packages:
name: pedantic name: pedantic
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.8.0+1" version: "1.9.0"
petitparser: petitparser:
dependency: transitive dependency: transitive
description: description:
@ -370,14 +370,14 @@ packages:
name: shared_preferences name: shared_preferences
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.5.7" version: "0.5.7+1"
shared_preferences_macos: shared_preferences_macos:
dependency: transitive dependency: transitive
description: description:
name: shared_preferences_macos name: shared_preferences_macos
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.0.1+7" version: "0.0.1+8"
shared_preferences_platform_interface: shared_preferences_platform_interface:
dependency: transitive dependency: transitive
description: description:
@ -391,7 +391,7 @@ packages:
name: shared_preferences_web name: shared_preferences_web
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.1.2+4" version: "0.1.2+5"
sky_engine: sky_engine:
dependency: transitive dependency: transitive
description: flutter description: flutter
@ -410,14 +410,14 @@ packages:
name: sqflite name: sqflite
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.3.0" version: "1.3.0+1"
sqflite_common: sqflite_common:
dependency: transitive dependency: transitive
description: description:
name: sqflite_common name: sqflite_common
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.0.0+1" version: "1.0.1"
stack_trace: stack_trace:
dependency: transitive dependency: transitive
description: description:
@ -508,7 +508,7 @@ packages:
name: url_launcher_web name: url_launcher_web
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.1.1+2" version: "0.1.1+4"
uuid: uuid:
dependency: transitive dependency: transitive
description: description:

View File

@ -8,11 +8,12 @@
# 1 Open: "lib/labelconfig.dart" # 1 Open: "lib/labelconfig.dart"
### Change App Icon ### Change App Icon
# 1 Open: assets/icon/appicon.png (line 53) replace icon (1024px1024px icon size) # 1 Replace: assets/icon/appicon.png (1024px1024px icon size)
# 2 Run this command from Terminal: flutter pub run flutter_launcher_icons:main # 2 Run this command from Terminal: flutter pub run flutter_launcher_icons:main
### Submitting the IOS/Android app ### Uploading the IOS/Android app
# 1 Open our online documentation: https://woosignal.com/docs/app/ios/label-storemax # IOS https://flutter.dev/docs/deployment/ios
# Android https://flutter.dev/docs/deployment/android
name: label_storemax name: label_storemax
description: LabelStoreMAX description: LabelStoreMAX