-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sys - Upgrade to latest Flutter/Dart 3, Update libs #234
Comments
Glad to hear it's making a good first impression. I wished it had more progress done by now, but you know, always juggling 10 plates. If you can run the update I'll gladly merge your PR. We kept pushing it because we did not upgrade our setup yet to Flutter 3. I think there are some new life cycle calls that need to be implemented, or at least stubbed. You could trace the Quill log and check what they had to do to get it working on F3. If you are stuck I'll jump in and try it myself. Cheers! |
I think we have it duped here: #202. We can continue work here, I just renamed. Quick info. We do one ticket one commit and we use rebase. Such that we keep the gitlog very clean. |
visual-editor
Thanks @adrian-moisa for the reply! However, I'm having a bit of trouble getting the
I've noticed that while installing, some classes are not available. For example: I don't know if this is related to the dependencies or to the example app running a specific version of |
Hi @LuchoTurtle! I'm one of the maintainers of visual-editor. We are currently running this repo using: Downgrading to this version should enable you to run the example app. If you are unsure how to downgrade:
We can chat over our discord server if you need more assistance as well, ping @CRYSTONE2 over there. |
@LuchoTurtle I think this is the one of the changes we have to make due to upgrade to Flutter 3. If you are stuck on it and can't find your way I'll check it myself. Though Today and tomorrow I'm under unusual circumstances, can't spend much time on it. No promise. Soonest will ne Thursday. Until then if you are stuck you can attempt to revert Flutter to a prior versions if it's possible. Drop me an update with your situation. |
Hey @CristiSch , thanks for helping out!
UPDATE: Got it working by downgrading Notice that I got it working **on Android **(I'm going to try and see if it works on iOS and web next). Though I had to make some updates to the Gradle code:
ext.kotlin_version = '1.9.10'
...
classpath 'com.android.tools.build:gradle:7.2.0'
...
tasks.register("clean", Delete) {
delete rootProject.buildDir
}
Should I open a PR for this? Is it perhaps an "on my computer only" type thing? I can work on this PR and upgrade dependencies all in one go, if y'all want :D |
@adrian-moisa cheers for that. Though I can also give it a whirl as well and create a PR solely for updating |
One way or another we have to bring this repo up to speed. People are needing it. This upgrade is overdue. Since we have new stakeholders there's more motivation to get it done. Teamwork. Edit Also upgraded repo to latest libs. To make sure we are not missing out on smth. |
This was made because `gallery_saver` was "stuck" with a dependency of `http` at 0.13, not allowing to upgrade other dependencies. Check CarnegieTechnologies/gallery_saver#205 for more information. This commit adds `gal`, which does the same thing. `dio` and `path` were needed to recreate the behaviour of `gallery_saver`. `gal`, however, is updated and uses the latest versions of packages.
Cheers @adrian-moisa ! I was working on getting the dependencies updated, as well, to resolve the dependency issues I was having prior. Perhaps it makes sense to copy and shift into a new PR 👌 |
What's your timezone? I'm going out. I have to wakeup again in 6h. GMT+1 here |
Hello
visual-editor
team! 👋Thanks for the package! It looks awesome! 🥳
I'm trying to get it working on a project that uses
flutter-quill
and I'm migrating it tovisual-editor
. This project has the following constraints:Initially, I was using
flutter_quill_extensions
and, when installingvisual_editor
, I'm prompted with the following error:I've removed
flutter_quill_extensions
to surpass this obstacle but, after trying to install again, I got the following error:Because I'm using
mockito
for testing purposes, and it depends on a newer version ofanalyzer
, it fails.I propose upgrading
visual_editor
's dependencies so this issue is surpassed :)I'll try to open a PR addressing these issues :D
The text was updated successfully, but these errors were encountered: