Jonny Borges

Results 128 comments of Jonny Borges

I solve my problem adding theses variables to .bashrc export PATH=/usr/local/cuda/bin:$PATH export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH remember to use `source .bashrc` after.

Just comment out: https://github.com/TimDettmers/bitsandbytes/blob/1b8772a8f33fdb47df0c849302cbb7e703571b8c/bitsandbytes/functional.py#L187

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

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

related to https://github.com/jonataslaw/getx/pull/1262

@psrcek Can not reproduce error on your code https://user-images.githubusercontent.com/35742643/115291472-316fac80-a12b-11eb-82c0-e7b1d5fb7f62.mov

> @jonataslaw > > 2021-04-20.10.13.50.mov This is so confusing, but I was able to reproduce the problem by changing the device's ThemeMode. It seems that when the ThemeMode is changed,...

@eduardoflorence @GoldenSoju You who made changes to Get.changeTheme in the last two versions, could you help me with that?

If I understand what you mean, you are trying to pass a parameter to an earlier route. You should use the result of Get.back, not arguments to do so.

change: ```dart Prime() { Get.put(PrimeController()); } @override Widget build(BuildContext context) { ``` to: ```dart @override Widget build(BuildContext context) { Get.put(PrimeController()); ``` The class constructor is called before the route, so...