From bfe14d0f818c25d907e36fe704a31b74ad39e7d4 Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Wed, 12 Feb 2025 19:21:56 -0600 Subject: [PATCH] Ignore dart:html deprecation for now (#2583) See https://github.com/flutter/samples/issues/2582 --- web/samples_index/lib/src/carousel.dart | 2 ++ web/samples_index/web/description.dart | 2 ++ web/samples_index/web/main.dart | 2 ++ 3 files changed, 6 insertions(+) diff --git a/web/samples_index/lib/src/carousel.dart b/web/samples_index/lib/src/carousel.dart index 9d1841c80..cea1c397c 100644 --- a/web/samples_index/lib/src/carousel.dart +++ b/web/samples_index/lib/src/carousel.dart @@ -2,6 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file +// TODO(kevmoo): https://github.com/flutter/samples/issues/2582 +// ignore: deprecated_member_use import 'dart:html'; class Carousel { diff --git a/web/samples_index/web/description.dart b/web/samples_index/web/description.dart index f75861e8a..ccdc4f7b6 100644 --- a/web/samples_index/web/description.dart +++ b/web/samples_index/web/description.dart @@ -1,3 +1,5 @@ +// TODO(kevmoo): https://github.com/flutter/samples/issues/2582 +// ignore: deprecated_member_use import 'dart:html'; import 'package:mdc_web/mdc_web.dart'; diff --git a/web/samples_index/web/main.dart b/web/samples_index/web/main.dart index 445483724..2f066c246 100644 --- a/web/samples_index/web/main.dart +++ b/web/samples_index/web/main.dart @@ -1,3 +1,5 @@ +// TODO(kevmoo): https://github.com/flutter/samples/issues/2582 +// ignore: deprecated_member_use import 'dart:html'; import 'package:mdc_web/mdc_web.dart';