• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

Active eCommerce Flutter App

Active eCommerce Flutter App 4.6.1 - Untouched

No permission to download
Whenever I register/signup in app, it doesn't redirect to verify account page. It shows successfully logged in and stays on signup page. I have manually press back button and go back to store main page then click on profile section then verify account page appears. Can someone help?
its solved ?????
 
Whenever I register/signup in app, it doesn't redirect to verify account page. It shows successfully logged in and stays on signup page. I have manually press back button and go back to store main page then click on profile section then verify account page appears. Can someone help?
i have found a solution by disabling a function. It may be happen for " USE_PUSH_NOTIFICATION = true; " .
When Push notification equal to false then it work successfully and redirect to home page.

But need a permanent solution , because Push notification is also a useful function and why we make it false.
any one please raise it to Code author.

File location : ../lib/other_config.dart ( static const bool USE_PUSH_NOTIFICATION = false; )
 
Whenever I register/signup in app, it doesn't redirect to verify account page. It shows successfully logged in and stays on signup page. I have manually press back button and go back to store main page then click on profile section then verify account page appears. Can someone help?
I tried. Everything working perfectly
 
To bypass the message "The app is inactivated"

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,
                  ),
                ],
              ),
            ),
          ),
        );
      }
    });
  });
}

To replacement code:
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,
                )
              ],
            ),
          ),
        ));
      }
    });
  });
}
I just followed this method.

Note : I didn't use any extra plugin
 
  • Like
Reactions: coadedfix
To bypass the message "The app is inactivated"

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,
                  ),
                ],
              ),
            ),
          ),
        );
      }
    });
  });
}

To replacement code:
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,
                )
              ],
            ),
          ),
        ));
      }
    });
  });
}
Follow this to null the app
 
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock