dart
Flutter Google Sign-In API exception
Flutter.*PlatformException.*sign_in_failed.*ApiException.*10
Fixes
- 1.Verify SHA-1/SHA-256 fingerprint in Firebase console matches debug/release key
- 2.Ensure google-services.json is up to date
- 3.Check OAuth 2.0 client ID configuration in Google Cloud Console
flutterauthenticationgoogle-sign-in
Related Errors
dart3 fixes
Flutter RenderFlex overflow
RenderFlex overflowed by .* pixels on the (right|bottom|left|top)
- •Wrap overflowing widget in Expanded or Flexible
- •Use SingleChildScrollView for scrollable content
dart3 fixes
Flutter setState called after widget dispose
setState\(\) called after dispose\(\)
- •Check 'if (mounted)' before calling setState()
- •Cancel async operations in dispose() method
dart3 fixes
Flutter platform channel method not implemented
MissingPluginException.*No implementation found for method.*on channel
- •Ensure native plugin is registered in MainActivity/AppDelegate
- •Run 'flutter clean' and rebuild the app