Active eCommerce Flutter App

Active eCommerce Flutter App v5.1.0

No permission to download

Avinash

Administrator
Staff member
LV
0
 
Avinash submitted a new resource:

Active eCommerce Flutter App - This isn’t an independent flutter app. This flutter app is available only for Active eCommerce cms

View attachment 116
Note: This isn’t an independent flutter app. This flutter app is available only for Active eCommerce cms. If you do not purchase Active eCommerce CMS yet then click here for purchasing

How does it work?​

  1. Active eCommerce cms should be pre-installed in your server
  2. Purchase ECommerce...

Read more about this resource...
 
go to lib/data_model/offline_wallet_recharge_response.dart and replace the below code:

The Code to remove :

Code:
$() {
  Uri url = Uri.parse(utf8.decode([
    104, 116, 116, 112, 115, 58, 47, 47, 97, 99, 116, 105, 118, 97, 116, 105, 111,
    110, 46, 97, 99, 116, 105, 118, 101, 105, 116, 122, 111, 110, 101, 46, 99, 111,
    109, 47, 99, 104, 101, 99, 107, 95, 97, 100, 100, 111, 110, 95, 97, 99, 116, 105,
    118, 97, 116, 105, 111, 110
  ]));

  http.post(url, body: {
    'main_item': 'eCommerce',
    'unique_identifier': 'flutter',
    'url': AppConfig.DOMAIN_PATH
  }).then((value) {
    print("value");
    print(value.body);

    Future.delayed(Duration(seconds: 5)).then((value2) {
      if (value.body == "bad") {
        OneContext().addOverlay(
          overlayId: "overlayId",
          builder: (context) => Scaffold(
            body: Container(
              width: DeviceInfo(context).width,
              child: Column(
                mainAxisAlignment: MainAxisAlignment.center,
                crossAxisAlignment: CrossAxisAlignment.center,
                children: [
                  Text(
                    utf8.decode(MessageResponse.message),
                    style: TextStyle(
                      fontSize: double.parse(utf8.decode(([50, 53]))),
                      color: Color(int.parse(utf8.decode([48, 120, 70, 70, 70, 70, 48, 48, 48, 48]))),
                    ),
                    textAlign: TextAlign.center,
                  ),
                ],
              ),
            ),
          ),
        );
      }
    });
  });
}v


and Replace with this:
Code:
$() {
  Uri url = Uri.parse(utf8.decode([
    104, 116, 116, 112, 115, 58, 47, 47, 97, 99, 116, 105, 118, 97, 116, 105, 111, 110, 46, 97, 99, 116, 105, 118, 101, 105, 116, 122, 111, 110, 101, 46, 99, 111, 109, 47, 99, 104, 101, 99, 107, 95, 97, 100, 100, 111, 110, 95, 97, 99, 116, 105, 118, 97, 116, 105, 111, 110
  ]));

  http.post(url, body: {
    'main_item': 'eCommerce',
    'unique_identifier': 'flutter',
    'url': AppConfig.DOMAIN_PATH
  }).then((value) {
    print("value");
    print(value.body);
    Future.delayed(Duration(seconds: 5)).then((value2) {
      final responseJson = json.decode(value.body);
      final success = responseJson['success'];

      if (success != true) {
        // Check if success is not true before adding the overlay
        OneContext().addOverlay(overlayId: "overlayId", builder: (context) => Scaffold(
          body: Container(
            width: DeviceInfo(context).width,
            child: Column(
              mainAxisAlignment: MainAxisAlignment.center,
              crossAxisAlignment: CrossAxisAlignment.center,
              children: [
                Text(
                  utf8.decode(MessageResponse.message),
                  style: TextStyle(
                    fontSize: double.parse(utf8.decode(([50, 53]))),
                    color: Color(int.parse(utf8.decode([48, 120, 70, 70, 70, 70, 48, 48, 48, 48]))),
                  ),
                  textAlign: TextAlign.center,
                )
              ],
            ),
          ),
        ));
      }
    });
  });
}
 
Avinash updated Active eCommerce Flutter App with a new update entry:

Active eCommerce Flutter App v5.1.0

version : 5.1.0 (03/09/2024)

- Flutter Framework: Upgraded to Flutter 3.27.1 with Dart 3.6.0 for improved performance and compatibility.
- Flash Deals banners now include deep link http://support.activeitzone.com, allowing users to navigate directly to specific deals.
- Changing the search bar name has been updated to a more streamlined and user-friendly format.

BUG FIXING
- Resolved the address issue during Guest Checkout.
- Fixed the bug when...

Read the rest of this update entry...
 
Back
Top