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 13c328d commit 9d7e862Copy full SHA for 9d7e862
flutter/example/lib/main.dart
@@ -231,9 +231,8 @@ class MainScaffold extends StatelessWidget {
231
buttonTitle: 'Dart: try catch',
232
),
233
TooltipButton(
234
- onPressed: () => Scaffold.of(context).showBottomSheet<dynamic>(
235
- (context) => const Text('Scaffold error'),
236
- ),
+ onPressed: () => Scaffold.of(context)
+ .showBottomSheet((context) => const Text('Scaffold error')),
237
text:
238
'Creates an uncaught exception and sends it to Sentry. This demonstrates how our flutter error integration catches unhandled exceptions.',
239
buttonTitle: 'Flutter error : Scaffold.of()',
0 commit comments