Skip to content

Commit 1084886

Browse files
committed
v1.1.1
1 parent f220a55 commit 1084886

File tree

8 files changed

+19
-16
lines changed

8 files changed

+19
-16
lines changed

ShopMax/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [1.1.1] - 2024-02-22
2+
3+
* Refactor pages
4+
* pubspec.yaml updates
5+
16
## [1.1.0] - 2024-02-21
27

38
* Ability to add, reorder and show Shopify Collections selected from the WooSignal dashboard

ShopMax/lib/resources/pages/browse_categories_page.dart renamed to ShopMax/lib/resources/pages/shopify/browse_categories_page.dart

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import 'package:flutter/material.dart';
2-
import 'package:flutter_app/bootstrap/helpers.dart';
3-
import 'package:flutter_app/resources/widgets/safearea_widget.dart';
2+
import '/bootstrap/helpers.dart';
3+
import '/resources/widgets/safearea_widget.dart';
44
import 'package:nylo_framework/nylo_framework.dart';
55
import 'package:woosignal_shopify_api/models/response/collection_item_response.dart';
66
import 'package:woosignal_shopify_api/models/response/product_search.dart';
77
import 'package:woosignal_shopify_api/models/response/products_by_collection_id_response.dart';
8-
import '../widgets/woosignal_ui.dart';
8+
import '/resources/widgets/woosignal_ui.dart';
99

1010
class BrowseCategoriesPage extends NyStatefulWidget {
1111
static const path = '/browse-categories';
@@ -23,17 +23,15 @@ class _BrowseCategoriesPageState extends NyState<BrowseCategoriesPage> {
2323
_collection = data() as Collections;
2424
}
2525

26-
/// Use boot if you need to load data before the [view] is rendered.
27-
@override
28-
boot() async {}
29-
3026
@override
3127
Widget view(BuildContext context) {
3228
return Scaffold(
3329
appBar: AppBar(title: Text(_collection?.title ?? "")),
3430
body: SafeAreaWidget(
3531
child: NyPullToRefresh.grid(
3632
crossAxisCount: 2,
33+
mainAxisSpacing: 15,
34+
crossAxisSpacing: 10,
3735
child: (context, product) {
3836
product as ProductSearch;
3937
return ProductItem.fromShopifyProductSearch(product);

ShopMax/lib/resources/pages/shopify/login_page.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1010

1111
import 'package:flutter/material.dart';
12-
import 'package:flutter_app/resources/pages/forgot_password_page.dart';
12+
import '/resources/pages/shopify/forgot_password_page.dart';
1313
import '/bootstrap/helpers.dart';
1414
import '/resources/pages/shopify/register_page.dart';
1515
import '/resources/widgets/buttons.dart';

ShopMax/lib/resources/widgets/shopify/home_drawer_widget.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1010

1111
import 'package:flutter/material.dart';
12-
import 'package:flutter_app/resources/pages/browse_categories_page.dart';
12+
import 'package:flutter_app/resources/pages/shopify/browse_categories_page.dart';
1313
import 'package:woosignal_shopify_api/models/response/collection_item_response.dart';
1414
import '/bootstrap/app_helper.dart';
1515
import '/bootstrap/helpers.dart';

ShopMax/lib/routes/router.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import '/resources/pages/forgot_password_page.dart';
2-
import '/resources/pages/browse_categories_page.dart';
1+
import '/resources/pages/shopify/forgot_password_page.dart';
2+
import '/resources/pages/shopify/browse_categories_page.dart';
33
import '/resources/pages/shopify/account_delete_page.dart';
44
import '/resources/pages/shopify/account_landing_page.dart';
55
import '/resources/pages/shopify/login_page.dart';

ShopMax/pubspec.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1102,10 +1102,10 @@ packages:
11021102
dependency: "direct main"
11031103
description:
11041104
name: url_launcher
1105-
sha256: c512655380d241a337521703af62d2c122bf7b77a46ff7dd750092aa9433499c
1105+
sha256: "0ecc004c62fd3ed36a2ffcbe0dd9700aee63bd7532d0b642a488b1ec310f492e"
11061106
url: "https://pub.dev"
11071107
source: hosted
1108-
version: "6.2.4"
1108+
version: "6.2.5"
11091109
url_launcher_android:
11101110
dependency: transitive
11111111
description:
@@ -1260,4 +1260,4 @@ packages:
12601260
version: "3.1.2"
12611261
sdks:
12621262
dart: ">=3.2.0 <4.0.0"
1263-
flutter: ">=3.13.0"
1263+
flutter: ">=3.16.0"

ShopMax/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Official WooSignal App Template for Shopify
22

33
# ShopMax
4-
# Version: 1.1.0
4+
# Version: 1.1.1
55
# Author: Anthony Gordon
66
# Homepage: https://woosignal.com
77
# Documentation: https://woosignal.com/docs/app/shopmax
@@ -36,7 +36,7 @@ dependencies:
3636
flutter_web_browser: ^0.17.1
3737
flutter_paypal_payment: ^1.0.6
3838
pull_to_refresh_flutter3: 2.0.2
39-
url_launcher: ^6.2.4
39+
url_launcher: ^6.2.5
4040
bubble_tab_indicator: ^0.1.5
4141
status_alert: ^1.0.1
4242
math_expressions: ^2.4.0

0 commit comments

Comments
 (0)