• Take time to read Forum Rules | Hot Note | Why You Choose Us?

    Let try and keep the forum Post, comments and reviews in English

    Wishing all Scriptzhub users a joyful and blessed Eid!
    May this season of sacrifice bring you peace, inspiration, and endless creativity.
    Thank you for being part of our growing community of learners and developers.
    — The Scriptzhub Team

Active eCommerce Flutter App

Active eCommerce Flutter App v5.2.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...
 
Avinash updated Active eCommerce Flutter App with a new update entry:

Active eCommerce Flutter App v5.2.0

Active eCommerce Flutter App v5.2.0
Framework & Environment Upgrade
- Flutter Framework: Upgraded to Flutter SDK to 3.29.2.
- Upgraded Dart SDK to 3.7.0 for improved performance and language features.
- Upgraded Java runtime to version 21.
- Updated Gradle to version 8.10.2 for enhanced build performance.
- Migrated Groovy-based build scripts to Kotlin DSL for better maintainability and IDE support.
- Upgraded Kotlin to 2.1.0 for compatibility with the latest tools and features.

Code...

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