Skip to content
Prev Previous commit
Next Next commit
flutter analyze
  • Loading branch information
buenaflor committed Jan 29, 2024
commit 73f26ac5632d77a447c8403f2eda68732190d322
1 change: 0 additions & 1 deletion flutter/lib/src/screenshot/sentry_screenshot_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ class _SentryScreenshotWidgetState extends State<SentryScreenshotWidget> {

@override
Widget build(BuildContext context) {
print('got it ${_options?.attachScreenshot}');
if (_options?.attachScreenshot ?? false) {
return RepaintBoundary(
key: sentryScreenshotWidgetGlobalKey,
Expand Down
2 changes: 2 additions & 0 deletions flutter/test/screenshot/sentry_screenshot_widget_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ class Fixture {
}

class MyApp extends StatelessWidget {
const MyApp({super.key});

@override
Widget build(BuildContext context) {
return const Text('test');
Expand Down