getx icon indicating copy to clipboard operation
getx copied to clipboard

Get.until not work 5.0.0-release-candidate-5

Open Adrift001 opened this issue 1 year ago • 4 comments

ATTENTION: DO NOT USE THIS FIELD TO ASK SUPPORT QUESTIONS. USE THE PLATFORM CHANNELS FOR THIS. THIS SPACE IS DEDICATED ONLY FOR BUGS DESCRIPTION. Fill in the template. Issues that do not respect the model will be closed.

Describe the bug A clear and concise description of what the bug is.

Reproduction code NOTE: THIS IS MANDATORY, IF YOUR ISSUE DOES NOT CONTAIN IT, IT WILL BE CLOSED PRELIMINARY)

example:

void main() => runApp(MaterialApp(home: Home()));

class Home extends StatelessWidget {
  final count = 0.obs;
  @override
  Widget build(context) => Scaffold(
      appBar: AppBar(title: Text("counter")),
      body: Center(
        child: Obx(() => Text("$count")),
      ),
      floatingActionButton: FloatingActionButton(
        child: Icon(Icons.add),
        onPressed: () => count.value++,
      ));
}

To Reproduce Steps to reproduce the behavior:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Expected behavior A clear and concise description of what you expected to happen.

Screenshots If applicable, add screenshots to help explain your problem.

Flutter Version: Enter the version of the Flutter you are using

Getx Version: Enter the version of the Getx you are using

Describe on which device you found the bug: ex: Moto z2 - Android.

Minimal reproduce code Provide a minimum reproduction code for the problem

Adrift001 avatar Oct 20 '23 02:10 Adrift001

Same question. Did you fix it?

ElvistLui avatar Jan 22 '24 10:01 ElvistLui

Same question. Did you fix it?

rollback 4.6.6

Adrift001 avatar Jan 23 '24 07:01 Adrift001

Same issue here, and it's preventing me fron upgrading

eddyuan avatar May 29 '24 00:05 eddyuan

Same here, which is why I can't use version 5. @jonataslaw

synstin avatar Jun 02 '24 03:06 synstin

Attaching a reproduction code makes it quicker to fix the problem.

jonataslaw avatar Aug 16 '24 02:08 jonataslaw

Just one question, do you talk about removing Get.until? I believe Get.offUntil is what you are looking for.

jonataslaw avatar Aug 16 '24 02:08 jonataslaw