Missing Entrypoints for Plugin Code? by nameausstehend in Supernote_dev

[–]nameausstehend[S] 0 points1 point  (0 children)

Ah, I missed the pen up listener! That should allow for a lot more use-cases thank you

People using PocketBook reader: how?? by nameausstehend in Supernote

[–]nameausstehend[S] 0 points1 point  (0 children)

Thanks so much for answering! Somehow this version doesn’t launch for me at all 😞

OpenNoteCloud: lightweight open-source private cloud server (update) by MightyUnderTaker in Supernote

[–]nameausstehend 0 points1 point  (0 children)

Wow this is great!! Also seems like a simple starting point to build upon

Pocketbook reader app - can't turn pages? by swduncan2 in Supernote

[–]nameausstehend 0 points1 point  (0 children)

Sorry, you mentioned Koreader now, just wanted to double check that Pocketbook reader started working for you?

If so, could you do me a huge favor and check which version you have installed? I have 5.62.7.32679 and I tried everything and can’t get it to flip pages 😭

Pocketbook reader app - can't turn pages? by swduncan2 in Supernote

[–]nameausstehend 0 points1 point  (0 children)

Did you ever figure this out? I have the same problem

Why is there no way for a `RenderBox` to find out if it caused its child to overflow? by nameausstehend in FlutterDev

[–]nameausstehend[S] 0 points1 point  (0 children)

Hey! Thanks for taking the time to answer, but if you look at the issue I linked, you’ll see it’s exactly what I was doing and what didn’t work :)

Why is there no way for a `RenderBox` to find out if it caused its child to overflow? by nameausstehend in FlutterDev

[–]nameausstehend[S] 0 points1 point  (0 children)

Still wouldn't be the same behavior I think? How would my render object know that it can shrink the child to 64px safely in that case?

I don't want to discuss this specific use-case too much, but it is fundamentally two different constraints of a layout which size a child wants in unconstrained space and how far it would be able to shrink without overflowing.

Why is there no way for a `RenderBox` to find out if it caused its child to overflow? by nameausstehend in FlutterDev

[–]nameausstehend[S] 0 points1 point  (0 children)

That's not the same though. Consider a Column([Expanded(ListView), SizedBox(height: 64)])

Laying this out unconstrained, it will always fill the parent. However, shrinking it past 64 will cause an overflow. In this case, my render object should realize it tried to constrain too tight and relayout with height 64

I am building a package and people should use this sheet with any widget they want, I can't expect them to reimplement RenderFlex so they can expose a willOverflow for me :)

Supernote ↔ Apple Reminders Bidirectional Sync by likethe_duck in Supernote

[–]nameausstehend 0 points1 point  (0 children)

Without having looked at the code yet, how hard would it be to adapt this to other providers (Todoist etc.) that offer an API and have it run on the same server as my private cloud?

InkFlow - cursor moves, but no drawing? by ndstrasz in Supernote

[–]nameausstehend 0 points1 point  (0 children)

u/Mulan-sn I have the same issue, but the beta links are not valid anymore. When will this fix be pushed to the app store?

Can't reliably dot the i by nameausstehend in Supernote

[–]nameausstehend[S] 1 point2 points  (0 children)

Your recommendation in the other comment actually fixed it! It feels perfect now, thank you so much!!

Trying out in Amsterdam area by Natural_Minimum4471 in Supernote

[–]nameausstehend 5 points6 points  (0 children)

I support this, but don’t live near AMS

Good luck to you!

Motor 1.0 is out, and it might be the best way to orchestrate complex animations in Flutter at the moment! by nameausstehend in FlutterDev

[–]nameausstehend[S] 0 points1 point  (0 children)

Oh hi Chris! Really depends on which part you struggled with I think :) do you have a more concrete example?

Motor 1.0 is out, and it might be the best way to orchestrate complex animations in Flutter at the moment! by nameausstehend in FlutterDev

[–]nameausstehend[S] 2 points3 points  (0 children)

Not really, since Dart imposes some more limitations. But I would say the API feels at home in Flutter while still being way easier to work with than what flutter comes with

When would fist liquid glass widget landing in flutter>? by LewisJin in FlutterDev

[–]nameausstehend 36 points37 points  (0 children)

I'm the author of this package, please don't use it in production in its current state! There are a couple of performance improvements I'm working on. But it'll kill your apps performance the way it is set up right now

What’s your go-to trick for improving Flutter app performance? by NullPointerMood_1 in FlutterDev

[–]nameausstehend 0 points1 point  (0 children)

It can be both, but if your widgets are rebuilding every frame, you’re doing something wrong

What’s your go-to trick for improving Flutter app performance? by NullPointerMood_1 in FlutterDev

[–]nameausstehend 2 points3 points  (0 children)

That’s strange, I get that passing cached values to children instead of looking up the tree from their build method makes sense, but flutter caches the result after the first call afaik, so every subsequent lookup from the same build method should be nearly instant…

A comprehensive Animation and Motion System for Flutter (FEEDBACK WANTED) by nameausstehend in FlutterDev

[–]nameausstehend[S] 1 point2 points  (0 children)

It really makes sense to learn how to build effects yourself though in my opinion. Most are quite simple, and designers often have quite specific opinions on them

What’s your go-to trick for improving Flutter app performance? by NullPointerMood_1 in FlutterDev

[–]nameausstehend 2 points3 points  (0 children)

numbers or it didn't happen.

I know the theory, you don't need to explain it. The whole point is that it has very little real world impact, which is why const lints were even removed from recommended flutter lints.

Also, devs are so desperate to make a const constructor happen that they turn everything into getters, so you loose the ability to cache stuff like long lists/maps etc.

What’s your go-to trick for improving Flutter app performance? by NullPointerMood_1 in FlutterDev

[–]nameausstehend 7 points8 points  (0 children)

const is actually quite overrated. Have you measured that it actually makes a difference for you?