-
Notifications
You must be signed in to change notification settings - Fork 49
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
feat: support textual [WIP] #537
base: main
Are you sure you want to change the base?
Conversation
Thanks so much for starting this @tlambert03, that looks very promising! |
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #537 +/- ##
==========================================
- Coverage 87.69% 84.98% -2.72%
==========================================
Files 40 43 +3
Lines 4723 4874 +151
==========================================
Hits 4142 4142
- Misses 581 732 +151 ☔ View full report in Codecov by Sentry. |
I've just been looking for a fallback option for We're currently using What's the status of this implementation? Can I help somehow? What's missing? (Also, I assume that |
hey @imagejan, thanks for commenting. The other major decision is mostly how we want to shoehorn the textual app into the context of a magicgui app. You'll note, for example, that I'm currently just creating a global textual app, and basically just appending every widget that gets created to that app. I'm not entirely sure that's the best pattern. It might be fine to begin with, as long as we can change it later without breaking any public-facing API that we expose. In any case, I'd love some help! (just knowing that someone out there is interested in using it helps... I have so many things going on that it helps to focus on things I know people will use). That help could take many forms: you could
|
This pull request has been mentioned on Image.sc Forum. There might be relevant details there: https://forum.image.sc/t/using-magicgui-to-create-pydantic-class-instances/92520/1 |
WIP support for textual (#534 ... cc @davidbrochart). Proof of principle working for a few widgets, now need to flesh it out with all of the other widgets... and think a bit more about how the global layout/styling of the app will work
(need to run with
TEXTUAL=devtools
in order to actually see the output of the callbacks)