fix lints
This commit is contained in:
@@ -28,7 +28,7 @@ import 'package:weblibre/presentation/widgets/selectable_chips.dart';
|
||||
import 'package:weblibre/presentation/widgets/url_icon.dart';
|
||||
|
||||
class DefaultSearchSelector extends HookConsumerWidget {
|
||||
const DefaultSearchSelector();
|
||||
const DefaultSearchSelector({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context, WidgetRef ref) {
|
||||
|
||||
@@ -22,7 +22,7 @@ import 'package:flutter/material.dart';
|
||||
class SettingSection extends StatelessWidget {
|
||||
final String name;
|
||||
|
||||
const SettingSection({required this.name});
|
||||
const SettingSection({super.key, required this.name});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
@@ -43,7 +43,7 @@ class SettingSection extends StatelessWidget {
|
||||
class SettingSubSection extends StatelessWidget {
|
||||
final String name;
|
||||
|
||||
const SettingSubSection({required this.name});
|
||||
const SettingSubSection({super.key, required this.name});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
|
||||
@@ -25,7 +25,7 @@ class SyncDetailsTable extends StatelessWidget {
|
||||
final int? count;
|
||||
final DateTime? lastSync;
|
||||
|
||||
const SyncDetailsTable(this.count, this.lastSync);
|
||||
const SyncDetailsTable(this.count, this.lastSync, {super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
|
||||
Reference in New Issue
Block a user