Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
johnpryan committed Jun 12, 2024
1 parent d958acf commit a19cce5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pkgs/dartpad_ui/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import 'package:flutter/material.dart';
import 'package:flutter_web_plugins/url_strategy.dart' show usePathUrlStrategy;
import 'package:go_router/go_router.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:http/http.dart' as http;
import 'package:pointer_interceptor/pointer_interceptor.dart';
import 'package:provider/provider.dart';
import 'package:split_view/split_view.dart';
Expand Down Expand Up @@ -1153,8 +1152,8 @@ class OverflowMenu extends StatelessWidget {
}

class ContinueInMenu extends StatelessWidget {
VoidCallback openInIdx;
ContinueInMenu({super.key, required this.openInIdx});
final VoidCallback openInIdx;
const ContinueInMenu({super.key, required this.openInIdx});

@override
Widget build(BuildContext context) {
Expand Down

0 comments on commit a19cce5

Please sign in to comment.