This commit is contained in:
nyne
2024-09-29 16:22:25 +08:00
parent f08c5cccb9
commit e8276f243c
2 changed files with 3 additions and 3 deletions

View File

@@ -21,7 +21,8 @@ linter:
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
# producing the lint.
rules:
- collection_methods_unrelated_type
collection_methods_unrelated_type: false
use_build_context_synchronously: false
# avoid_print: false # Uncomment to disable the `avoid_print` rule
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule

View File

@@ -1,6 +1,5 @@
import 'dart:io';
import 'package:file_picker/file_picker.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:venera/components/components.dart';
@@ -228,7 +227,7 @@ class _Local extends StatelessWidget {
}
class _ImportComicsWidget extends StatefulWidget {
const _ImportComicsWidget({super.key});
const _ImportComicsWidget();
@override
State<_ImportComicsWidget> createState() => _ImportComicsWidgetState();