Skip to content

Commit e799e35

Browse files
committed
v1.1.5
1 parent 7ad678f commit e799e35

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

ShopMax/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [1.1.5] - 2024-02-26
2+
3+
* Fix the Controller on the `CheckoutStatus` page
4+
15
## [1.1.4] - 2024-02-26
26

37
* pubspec.yaml updates

ShopMax/lib/resources/pages/checkout_status_page.dart

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

1111
import 'package:flutter/material.dart';
12-
import 'package:flutter_app/app/controllers/controller.dart';
1312
import '/bootstrap/helpers.dart';
1413
import '/resources/widgets/buttons.dart';
1514
import 'package:nylo_framework/nylo_framework.dart';
@@ -18,7 +17,7 @@ import '/app/models/cart.dart';
1817
import '/app/models/checkout_session.dart';
1918
import '/resources/widgets/woosignal_ui.dart';
2019

21-
class CheckoutStatusPage extends NyStatefulWidget<Controller> {
20+
class CheckoutStatusPage extends NyStatefulWidget {
2221
static String path = "/checkout-status";
2322

2423
CheckoutStatusPage({Key? key})
@@ -33,14 +32,12 @@ class _CheckoutStatusState extends NyState<CheckoutStatusPage> {
3332
_order = widget.controller.data();
3433
await Cart.getInstance.clear();
3534
CheckoutSession.getInstance.clear();
36-
setState(() {});
3735
}
3836

3937
@override
4038
Widget build(BuildContext context) {
4139
return Scaffold(
4240
appBar: AppBar(
43-
elevation: 0.0,
4441
title: StoreLogo(height: 60),
4542
automaticallyImplyLeading: false,
4643
centerTitle: true,

ShopMax/pubspec.yaml

Lines changed: 1 addition & 1 deletion
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.4
4+
# Version: 1.1.5
55
# Author: Anthony Gordon
66
# Homepage: https://woosignal.com
77
# Documentation: https://woosignal.com/docs/app/shopmax

0 commit comments

Comments
 (0)