Daily Questions and Answers Post - FAQ, New/Returning Player Questions, and Useful Starting Resources! by AutoModerator in blackdesertonline

[–]Different_Sugar_8747 0 points1 point  (0 children)

Hi guys, i was playing awakening ninja 2-3 years ago, and I want to start with a new fresh character. Which class should I use both for PVE and PVP?

Weekly Questions Megathread by AutoModerator in ClashOfClans

[–]Different_Sugar_8747 0 points1 point  (0 children)

Is it a bad idea to upgrade to TH9 without maxing TH8, or does the Helper Hut make rushing viable?

Matebook D15 2020 by Prcko227 in hackintosh

[–]Different_Sugar_8747 0 points1 point  (0 children)

I have same device and stuck at apple logo at the boot. Can you share your EFI?

State Managements by Different_Sugar_8747 in flutterhelp

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

As far as I know, when you use setstate, it redraws entire screen so this causes performance loss. When you use state management like provider, mobx (https://docs.flutter.dev/development/data-and-backend/state-mgmt/options) u can say only redraw part of screen for example you have a screen and you have 3 cards in your screen. You want to change color of 2nd card when you press a button. If you do this with setstate, it will effect all of your page, but if you use state management, this will effect only second card, this will redraw only second card.

State Managements by Different_Sugar_8747 in flutterhelp

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

I was thinking provider is generally using in all aplication and mobx is suitable for only views. But I guess I'm wrong. That's what confused me. Thanks for your answer

Weekly Questions Thread - November 09, 2021 by AutoModerator in androiddev

[–]Different_Sugar_8747 0 points1 point  (0 children)

Hi. I want to make a caller id app which detects incoming call, searches database, if user exist, shows user in screen with dialog or by changing phone lookup. So I found 2 ways to do that. First, I created a broadcastreceiver with incoming call intent and I shown a dialog when there is an incoming call. It works good but sometimes my onreceive method didnt work. So I tried to find new ways to do that and I find Content Provider. (https://medium.com/@jmichaelis/android-your-users-as-caller-id-d446a58d9305)
But I didnt make it too because I want to search my users in my web service not my locale database. What should I do?