We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1d019b commit 6a5a555Copy full SHA for 6a5a555
flutter/example/lib/main.dart
@@ -1046,12 +1046,12 @@ Future<void> showDialogWithTextAndImage(BuildContext context) async {
1046
final imageBytes =
1047
await DefaultAssetBundle.of(context).load('assets/sentry-wordmark.png');
1048
await showDialog<void>(
1049
+ // ignore: use_build_context_synchronously
1050
context: context,
1051
// gets tracked if using SentryNavigatorObserver
1052
routeSettings: const RouteSettings(
1053
name: 'AssetBundle dialog',
1054
),
- // ignore: use_build_context_synchronously
1055
builder: (context) {
1056
return AlertDialog(
1057
title: const Text('Asset Example'),
0 commit comments