flutter_login icon indicating copy to clipboard operation
flutter_login copied to clipboard

fix: Use mounted instead of context.mounted in LoginCard

Open vargab95 opened this issue 5 months ago • 0 comments

In my original PR, I've used mounted instead of context.mounted. However, it was merged as context.mounted checks. The problem is that, context.mounted has a hidden null check in the context getter of the State class. So an issue similar to #468 reappeared again in my crashlytics report. That's why I would like to replace the "context.mounted" checks in the LoginCard component with "mounted".

vargab95 avatar Jan 24 '24 14:01 vargab95