minor change

This commit is contained in:
Thibault Deckers 2022-03-02 08:41:09 +09:00
parent 2aba4eea1b
commit 3a91314a5d
101 changed files with 111 additions and 111 deletions

View file

@ -13,7 +13,7 @@ class AppReference extends StatefulWidget {
const AppReference({Key? key}) : super(key: key); const AppReference({Key? key}) : super(key: key);
@override @override
_AppReferenceState createState() => _AppReferenceState(); State<AppReference> createState() => _AppReferenceState();
} }
class _AppReferenceState extends State<AppReference> { class _AppReferenceState extends State<AppReference> {

View file

@ -25,7 +25,7 @@ class BugReport extends StatefulWidget {
const BugReport({Key? key}) : super(key: key); const BugReport({Key? key}) : super(key: key);
@override @override
_BugReportState createState() => _BugReportState(); State<BugReport> createState() => _BugReportState();
} }
class _BugReportState extends State<BugReport> with FeedbackMixin { class _BugReportState extends State<BugReport> with FeedbackMixin {

View file

@ -13,7 +13,7 @@ class Licenses extends StatefulWidget {
const Licenses({Key? key}) : super(key: key); const Licenses({Key? key}) : super(key: key);
@override @override
_LicensesState createState() => _LicensesState(); State<Licenses> createState() => _LicensesState();
} }
class _LicensesState extends State<Licenses> { class _LicensesState extends State<Licenses> {

View file

@ -11,7 +11,7 @@ class PolicyPage extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_PolicyPageState createState() => _PolicyPageState(); State<PolicyPage> createState() => _PolicyPageState();
} }
class _PolicyPageState extends State<PolicyPage> { class _PolicyPageState extends State<PolicyPage> {

View file

@ -44,7 +44,7 @@ class AvesApp extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_AvesAppState createState() => _AvesAppState(); State<AvesApp> createState() => _AvesAppState();
} }
class _AvesAppState extends State<AvesApp> with WidgetsBindingObserver { class _AvesAppState extends State<AvesApp> with WidgetsBindingObserver {

View file

@ -43,7 +43,7 @@ class CollectionAppBar extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_CollectionAppBarState createState() => _CollectionAppBarState(); State<CollectionAppBar> createState() => _CollectionAppBarState();
} }
class _CollectionAppBarState extends State<CollectionAppBar> with SingleTickerProviderStateMixin { class _CollectionAppBarState extends State<CollectionAppBar> with SingleTickerProviderStateMixin {

View file

@ -50,7 +50,7 @@ class CollectionGrid extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_CollectionGridState createState() => _CollectionGridState(); State<CollectionGrid> createState() => _CollectionGridState();
} }
class _CollectionGridState extends State<CollectionGrid> { class _CollectionGridState extends State<CollectionGrid> {
@ -170,7 +170,7 @@ class _CollectionSectionedContent extends StatefulWidget {
}); });
@override @override
_CollectionSectionedContentState createState() => _CollectionSectionedContentState(); State<_CollectionSectionedContent> createState() => _CollectionSectionedContentState();
} }
class _CollectionSectionedContentState extends State<_CollectionSectionedContent> { class _CollectionSectionedContentState extends State<_CollectionSectionedContent> {
@ -291,7 +291,7 @@ class _CollectionScrollView extends StatefulWidget {
}); });
@override @override
_CollectionScrollViewState createState() => _CollectionScrollViewState(); State<_CollectionScrollView> createState() => _CollectionScrollViewState();
} }
class _CollectionScrollViewState extends State<_CollectionScrollView> { class _CollectionScrollViewState extends State<_CollectionScrollView> {

View file

@ -29,7 +29,7 @@ class CollectionPage extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_CollectionPageState createState() => _CollectionPageState(); State<CollectionPage> createState() => _CollectionPageState();
} }
class _CollectionPageState extends State<CollectionPage> { class _CollectionPageState extends State<CollectionPage> {

View file

@ -20,7 +20,7 @@ class FilterBar extends StatefulWidget {
super(key: key); super(key: key);
@override @override
_FilterBarState createState() => _FilterBarState(); State<FilterBar> createState() => _FilterBarState();
} }
class _FilterBarState extends State<FilterBar> { class _FilterBarState extends State<FilterBar> {

View file

@ -19,7 +19,7 @@ class EntryQueryBar extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_EntryQueryBarState createState() => _EntryQueryBarState(); State<EntryQueryBar> createState() => _EntryQueryBarState();
} }
class _EntryQueryBarState extends State<EntryQueryBar> { class _EntryQueryBarState extends State<EntryQueryBar> {

View file

@ -107,7 +107,7 @@ class ReportOverlay<T> extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_ReportOverlayState createState() => _ReportOverlayState<T>(); State<ReportOverlay<T>> createState() => _ReportOverlayState<T>();
} }
class _ReportOverlayState<T> extends State<ReportOverlay<T>> with SingleTickerProviderStateMixin { class _ReportOverlayState<T> extends State<ReportOverlay<T>> with SingleTickerProviderStateMixin {
@ -239,7 +239,7 @@ class _FeedbackMessage extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_FeedbackMessageState createState() => _FeedbackMessageState(); State<_FeedbackMessage> createState() => _FeedbackMessageState();
} }
class _FeedbackMessageState extends State<_FeedbackMessage> { class _FeedbackMessageState extends State<_FeedbackMessage> {
@ -304,7 +304,7 @@ class ActionFeedback extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_ActionFeedbackState createState() => _ActionFeedbackState(); State<ActionFeedback> createState() => _ActionFeedbackState();
} }
class _ActionFeedbackState extends State<ActionFeedback> with SingleTickerProviderStateMixin { class _ActionFeedbackState extends State<ActionFeedback> with SingleTickerProviderStateMixin {

View file

@ -56,7 +56,7 @@ class ColorPickerDialog extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_ColorPickerDialogState createState() => _ColorPickerDialogState(); State<ColorPickerDialog> createState() => _ColorPickerDialogState();
} }
class _ColorPickerDialogState extends State<ColorPickerDialog> { class _ColorPickerDialogState extends State<ColorPickerDialog> {

View file

@ -71,7 +71,7 @@ class DraggableScrollbar extends StatefulWidget {
super(key: key); super(key: key);
@override @override
_DraggableScrollbarState createState() => _DraggableScrollbarState(); State<DraggableScrollbar> createState() => _DraggableScrollbarState();
static Widget buildScrollThumbAndLabel({ static Widget buildScrollThumbAndLabel({
required Widget scrollThumb, required Widget scrollThumb,

View file

@ -63,7 +63,7 @@ class PopupMenuItemExpansionPanel<T> extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_PopupMenuItemExpansionPanelState createState() => _PopupMenuItemExpansionPanelState<T>(); State<PopupMenuItemExpansionPanel<T>> createState() => _PopupMenuItemExpansionPanelState<T>();
} }
class _PopupMenuItemExpansionPanelState<T> extends State<PopupMenuItemExpansionPanel<T>> { class _PopupMenuItemExpansionPanelState<T> extends State<PopupMenuItemExpansionPanel<T>> {

View file

@ -16,7 +16,7 @@ class MultiCrossFader extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_MultiCrossFaderState createState() => _MultiCrossFaderState(); State<MultiCrossFader> createState() => _MultiCrossFaderState();
} }
class _MultiCrossFaderState extends State<MultiCrossFader> { class _MultiCrossFaderState extends State<MultiCrossFader> {

View file

@ -41,7 +41,7 @@ class AvesPopupMenuButton<T> extends PopupMenuButton<T> {
); );
@override @override
_AvesPopupMenuButtonState<T> createState() => _AvesPopupMenuButtonState<T>(); PopupMenuButtonState<T> createState() => _AvesPopupMenuButtonState<T>();
} }
class _AvesPopupMenuButtonState<T> extends PopupMenuButtonState<T> { class _AvesPopupMenuButtonState<T> extends PopupMenuButtonState<T> {

View file

@ -21,7 +21,7 @@ class QueryBar extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_QueryBarState createState() => _QueryBarState(); State<QueryBar> createState() => _QueryBarState();
} }
class _QueryBarState extends State<QueryBar> { class _QueryBarState extends State<QueryBar> {

View file

@ -15,7 +15,7 @@ class WheelSelector<T> extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_WheelSelectorState createState() => _WheelSelectorState<T>(); State<WheelSelector<T>> createState() => _WheelSelectorState<T>();
} }
class _WheelSelectorState<T> extends State<WheelSelector<T>> { class _WheelSelectorState<T> extends State<WheelSelector<T>> {

View file

@ -17,7 +17,7 @@ class DoubleBackPopScope extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_DoubleBackPopScopeState createState() => _DoubleBackPopScopeState(); State<DoubleBackPopScope> createState() => _DoubleBackPopScopeState();
} }
class _DoubleBackPopScopeState extends State<DoubleBackPopScope> with FeedbackMixin { class _DoubleBackPopScopeState extends State<DoubleBackPopScope> with FeedbackMixin {

View file

@ -20,7 +20,7 @@ class FavouriteToggler extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_FavouriteTogglerState createState() => _FavouriteTogglerState(); State<FavouriteToggler> createState() => _FavouriteTogglerState();
} }
class _FavouriteTogglerState extends State<FavouriteToggler> { class _FavouriteTogglerState extends State<FavouriteToggler> {

View file

@ -26,7 +26,7 @@ class Sweeper extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_SweeperState createState() => _SweeperState(); State<Sweeper> createState() => _SweeperState();
} }
class _SweeperState extends State<Sweeper> with SingleTickerProviderStateMixin { class _SweeperState extends State<Sweeper> with SingleTickerProviderStateMixin {

View file

@ -25,7 +25,7 @@ class TransitionImage extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_TransitionImageState createState() => _TransitionImageState(); State<TransitionImage> createState() => _TransitionImageState();
} }
class _TransitionImageState extends State<TransitionImage> { class _TransitionImageState extends State<TransitionImage> {

View file

@ -26,7 +26,7 @@ class GridItemTracker<T> extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_GridItemTrackerState createState() => _GridItemTrackerState<T>(); State<GridItemTracker<T>> createState() => _GridItemTrackerState<T>();
} }
class _GridItemTrackerState<T> extends State<GridItemTracker<T>> with WidgetsBindingObserver { class _GridItemTrackerState<T> extends State<GridItemTracker<T>> with WidgetsBindingObserver {

View file

@ -42,7 +42,7 @@ class GridScaleGestureDetector<T> extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_GridScaleGestureDetectorState createState() => _GridScaleGestureDetectorState<T>(); State<GridScaleGestureDetector<T>> createState() => _GridScaleGestureDetectorState<T>();
} }
class _GridScaleGestureDetectorState<T> extends State<GridScaleGestureDetector<T>> { class _GridScaleGestureDetectorState<T> extends State<GridScaleGestureDetector<T>> {
@ -235,7 +235,7 @@ class _ScaleOverlay extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_ScaleOverlayState createState() => _ScaleOverlayState(); State<_ScaleOverlay> createState() => _ScaleOverlayState();
} }
class _ScaleOverlayState extends State<_ScaleOverlay> { class _ScaleOverlayState extends State<_ScaleOverlay> {

View file

@ -28,7 +28,7 @@ class GridSelectionGestureDetector<T> extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_GridSelectionGestureDetectorState createState() => _GridSelectionGestureDetectorState<T>(); State<GridSelectionGestureDetector<T>> createState() => _GridSelectionGestureDetectorState<T>();
} }
class _GridSelectionGestureDetectorState<T> extends State<GridSelectionGestureDetector<T>> { class _GridSelectionGestureDetectorState<T> extends State<GridSelectionGestureDetector<T>> {

View file

@ -110,7 +110,7 @@ class AvesFilterChip extends StatefulWidget {
} }
@override @override
_AvesFilterChipState createState() => _AvesFilterChipState(); State<AvesFilterChip> createState() => _AvesFilterChipState();
} }
class _AvesFilterChipState extends State<AvesFilterChip> { class _AvesFilterChipState extends State<AvesFilterChip> {

View file

@ -31,7 +31,7 @@ class MagnifierGestureDetector extends StatefulWidget {
final Widget? child; final Widget? child;
@override @override
_MagnifierGestureDetectorState createState() => _MagnifierGestureDetectorState(); State<MagnifierGestureDetector> createState() => _MagnifierGestureDetectorState();
} }
class _MagnifierGestureDetectorState extends State<MagnifierGestureDetector> { class _MagnifierGestureDetectorState extends State<MagnifierGestureDetector> {

View file

@ -248,7 +248,7 @@ class _OverlayCoordinateFilterChip extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_OverlayCoordinateFilterChipState createState() => _OverlayCoordinateFilterChipState(); State<_OverlayCoordinateFilterChip> createState() => _OverlayCoordinateFilterChipState();
} }
class _OverlayCoordinateFilterChipState extends State<_OverlayCoordinateFilterChip> { class _OverlayCoordinateFilterChipState extends State<_OverlayCoordinateFilterChip> {

View file

@ -56,7 +56,7 @@ class GeoMap extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_GeoMapState createState() => _GeoMapState(); State<GeoMap> createState() => _GeoMapState();
} }
class _GeoMapState extends State<GeoMap> { class _GeoMapState extends State<GeoMap> {

View file

@ -21,7 +21,7 @@ class MarkerGeneratorWidget<T extends Key> extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_MarkerGeneratorWidgetState createState() => _MarkerGeneratorWidgetState<T>(); State<MarkerGeneratorWidget<T>> createState() => _MarkerGeneratorWidgetState<T>();
} }
class _MarkerGeneratorWidgetState<T extends Key> extends State<MarkerGeneratorWidget<T>> { class _MarkerGeneratorWidgetState<T extends Key> extends State<MarkerGeneratorWidget<T>> {

View file

@ -18,7 +18,7 @@ class ErrorThumbnail extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_ErrorThumbnailState createState() => _ErrorThumbnailState(); State<ErrorThumbnail> createState() => _ErrorThumbnailState();
} }
class _ErrorThumbnailState extends State<ErrorThumbnail> { class _ErrorThumbnailState extends State<ErrorThumbnail> {

View file

@ -37,7 +37,7 @@ class ThumbnailImage extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_ThumbnailImageState createState() => _ThumbnailImageState(); State<ThumbnailImage> createState() => _ThumbnailImageState();
} }
class _ThumbnailImageState extends State<ThumbnailImage> { class _ThumbnailImageState extends State<ThumbnailImage> {

View file

@ -58,7 +58,7 @@ class ThumbnailHighlightOverlay extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_ThumbnailHighlightOverlayState createState() => _ThumbnailHighlightOverlayState(); State<ThumbnailHighlightOverlay> createState() => _ThumbnailHighlightOverlayState();
} }
class _ThumbnailHighlightOverlayState extends State<ThumbnailHighlightOverlay> { class _ThumbnailHighlightOverlayState extends State<ThumbnailHighlightOverlay> {

View file

@ -30,7 +30,7 @@ class ThumbnailScroller extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_ThumbnailScrollerState createState() => _ThumbnailScrollerState(); State<ThumbnailScroller> createState() => _ThumbnailScrollerState();
} }
class _ThumbnailScrollerState extends State<ThumbnailScroller> { class _ThumbnailScrollerState extends State<ThumbnailScroller> {

View file

@ -11,7 +11,7 @@ class DebugAndroidAppSection extends StatefulWidget {
const DebugAndroidAppSection({Key? key}) : super(key: key); const DebugAndroidAppSection({Key? key}) : super(key: key);
@override @override
_DebugAndroidAppSectionState createState() => _DebugAndroidAppSectionState(); State<DebugAndroidAppSection> createState() => _DebugAndroidAppSectionState();
} }
class _DebugAndroidAppSectionState extends State<DebugAndroidAppSection> with AutomaticKeepAliveClientMixin { class _DebugAndroidAppSectionState extends State<DebugAndroidAppSection> with AutomaticKeepAliveClientMixin {

View file

@ -10,7 +10,7 @@ class DebugAndroidCodecSection extends StatefulWidget {
const DebugAndroidCodecSection({Key? key}) : super(key: key); const DebugAndroidCodecSection({Key? key}) : super(key: key);
@override @override
_DebugAndroidCodecSectionState createState() => _DebugAndroidCodecSectionState(); State<DebugAndroidCodecSection> createState() => _DebugAndroidCodecSectionState();
} }
class _DebugAndroidCodecSectionState extends State<DebugAndroidCodecSection> with AutomaticKeepAliveClientMixin { class _DebugAndroidCodecSectionState extends State<DebugAndroidCodecSection> with AutomaticKeepAliveClientMixin {

View file

@ -9,7 +9,7 @@ class DebugAndroidDirSection extends StatefulWidget {
const DebugAndroidDirSection({Key? key}) : super(key: key); const DebugAndroidDirSection({Key? key}) : super(key: key);
@override @override
_DebugAndroidDirSectionState createState() => _DebugAndroidDirSectionState(); State<DebugAndroidDirSection> createState() => _DebugAndroidDirSectionState();
} }
class _DebugAndroidDirSectionState extends State<DebugAndroidDirSection> with AutomaticKeepAliveClientMixin { class _DebugAndroidDirSectionState extends State<DebugAndroidDirSection> with AutomaticKeepAliveClientMixin {

View file

@ -7,7 +7,7 @@ class DebugCacheSection extends StatefulWidget {
const DebugCacheSection({Key? key}) : super(key: key); const DebugCacheSection({Key? key}) : super(key: key);
@override @override
_DebugCacheSectionState createState() => _DebugCacheSectionState(); State<DebugCacheSection> createState() => _DebugCacheSectionState();
} }
class _DebugCacheSectionState extends State<DebugCacheSection> with AutomaticKeepAliveClientMixin { class _DebugCacheSectionState extends State<DebugCacheSection> with AutomaticKeepAliveClientMixin {

View file

@ -14,7 +14,7 @@ class DebugAppDatabaseSection extends StatefulWidget {
const DebugAppDatabaseSection({Key? key}) : super(key: key); const DebugAppDatabaseSection({Key? key}) : super(key: key);
@override @override
_DebugAppDatabaseSectionState createState() => _DebugAppDatabaseSectionState(); State<DebugAppDatabaseSection> createState() => _DebugAppDatabaseSectionState();
} }
class _DebugAppDatabaseSectionState extends State<DebugAppDatabaseSection> with AutomaticKeepAliveClientMixin { class _DebugAppDatabaseSectionState extends State<DebugAppDatabaseSection> with AutomaticKeepAliveClientMixin {

View file

@ -9,7 +9,7 @@ class MediaStoreScanDirDialog extends StatefulWidget {
const MediaStoreScanDirDialog({Key? key}) : super(key: key); const MediaStoreScanDirDialog({Key? key}) : super(key: key);
@override @override
_MediaStoreScanDirDialogState createState() => _MediaStoreScanDirDialogState(); State<MediaStoreScanDirDialog> createState() => _MediaStoreScanDirDialogState();
} }
class _MediaStoreScanDirDialogState extends State<MediaStoreScanDirDialog> { class _MediaStoreScanDirDialogState extends State<MediaStoreScanDirDialog> {

View file

@ -9,7 +9,7 @@ class DebugStorageSection extends StatefulWidget {
const DebugStorageSection({Key? key}) : super(key: key); const DebugStorageSection({Key? key}) : super(key: key);
@override @override
_DebugStorageSectionState createState() => _DebugStorageSectionState(); State<DebugStorageSection> createState() => _DebugStorageSectionState();
} }
class _DebugStorageSectionState extends State<DebugStorageSection> with AutomaticKeepAliveClientMixin { class _DebugStorageSectionState extends State<DebugStorageSection> with AutomaticKeepAliveClientMixin {

View file

@ -23,7 +23,7 @@ class AddShortcutDialog extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_AddShortcutDialogState createState() => _AddShortcutDialogState(); State<AddShortcutDialog> createState() => _AddShortcutDialogState();
} }
class _AddShortcutDialogState extends State<AddShortcutDialog> { class _AddShortcutDialogState extends State<AddShortcutDialog> {

View file

@ -36,7 +36,7 @@ class AvesConfirmationDialog extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_AvesConfirmationDialogState createState() => _AvesConfirmationDialogState(); State<AvesConfirmationDialog> createState() => _AvesConfirmationDialogState();
} }
class _AvesConfirmationDialogState extends State<AvesConfirmationDialog> { class _AvesConfirmationDialogState extends State<AvesConfirmationDialog> {

View file

@ -22,7 +22,7 @@ class AvesSelectionDialog<T> extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_AvesSelectionDialogState<T> createState() => _AvesSelectionDialogState<T>(); State<AvesSelectionDialog<T>> createState() => _AvesSelectionDialogState<T>();
} }
class _AvesSelectionDialogState<T> extends State<AvesSelectionDialog<T>> { class _AvesSelectionDialogState<T> extends State<AvesSelectionDialog<T>> {

View file

@ -21,7 +21,7 @@ class EditEntryDateDialog extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_EditEntryDateDialogState createState() => _EditEntryDateDialogState(); State<EditEntryDateDialog> createState() => _EditEntryDateDialogState();
} }
class _EditEntryDateDialogState extends State<EditEntryDateDialog> { class _EditEntryDateDialogState extends State<EditEntryDateDialog> {

View file

@ -21,7 +21,7 @@ class EditEntryLocationDialog extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_EditEntryLocationDialogState createState() => _EditEntryLocationDialogState(); State<EditEntryLocationDialog> createState() => _EditEntryLocationDialogState();
} }
class _EditEntryLocationDialogState extends State<EditEntryLocationDialog> { class _EditEntryLocationDialogState extends State<EditEntryLocationDialog> {

View file

@ -14,7 +14,7 @@ class EditEntryRatingDialog extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_EditEntryRatingDialogState createState() => _EditEntryRatingDialogState(); State<EditEntryRatingDialog> createState() => _EditEntryRatingDialogState();
} }
class _EditEntryRatingDialogState extends State<EditEntryRatingDialog> { class _EditEntryRatingDialogState extends State<EditEntryRatingDialog> {

View file

@ -24,7 +24,7 @@ class TagEditorPage extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_TagEditorPageState createState() => _TagEditorPageState(); State<TagEditorPage> createState() => _TagEditorPageState();
} }
class _TagEditorPageState extends State<TagEditorPage> { class _TagEditorPageState extends State<TagEditorPage> {

View file

@ -20,7 +20,7 @@ class RemoveEntryMetadataDialog extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_RemoveEntryMetadataDialogState createState() => _RemoveEntryMetadataDialogState(); State<RemoveEntryMetadataDialog> createState() => _RemoveEntryMetadataDialogState();
} }
class _RemoveEntryMetadataDialogState extends State<RemoveEntryMetadataDialog> { class _RemoveEntryMetadataDialogState extends State<RemoveEntryMetadataDialog> {

View file

@ -17,7 +17,7 @@ class RenameEntryDialog extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_RenameEntryDialogState createState() => _RenameEntryDialogState(); State<RenameEntryDialog> createState() => _RenameEntryDialogState();
} }
class _RenameEntryDialogState extends State<RenameEntryDialog> { class _RenameEntryDialogState extends State<RenameEntryDialog> {

View file

@ -16,7 +16,7 @@ class ExportEntryDialog extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_ExportEntryDialogState createState() => _ExportEntryDialogState(); State<ExportEntryDialog> createState() => _ExportEntryDialogState();
} }
class _ExportEntryDialogState extends State<ExportEntryDialog> { class _ExportEntryDialogState extends State<ExportEntryDialog> {

View file

@ -22,7 +22,7 @@ class CoverSelectionDialog extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_CoverSelectionDialogState createState() => _CoverSelectionDialogState(); State<CoverSelectionDialog> createState() => _CoverSelectionDialogState();
} }
class _CoverSelectionDialogState extends State<CoverSelectionDialog> { class _CoverSelectionDialogState extends State<CoverSelectionDialog> {

View file

@ -13,7 +13,7 @@ class CreateAlbumDialog extends StatefulWidget {
const CreateAlbumDialog({Key? key}) : super(key: key); const CreateAlbumDialog({Key? key}) : super(key: key);
@override @override
_CreateAlbumDialogState createState() => _CreateAlbumDialogState(); State<CreateAlbumDialog> createState() => _CreateAlbumDialogState();
} }
class _CreateAlbumDialogState extends State<CreateAlbumDialog> { class _CreateAlbumDialogState extends State<CreateAlbumDialog> {

View file

@ -14,7 +14,7 @@ class RenameAlbumDialog extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_RenameAlbumDialogState createState() => _RenameAlbumDialogState(); State<RenameAlbumDialog> createState() => _RenameAlbumDialogState();
} }
class _RenameAlbumDialogState extends State<RenameAlbumDialog> { class _RenameAlbumDialogState extends State<RenameAlbumDialog> {

View file

@ -23,7 +23,7 @@ class ItemPickDialog extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_ItemPickDialogState createState() => _ItemPickDialogState(); State<ItemPickDialog> createState() => _ItemPickDialogState();
} }
class _ItemPickDialogState extends State<ItemPickDialog> { class _ItemPickDialogState extends State<ItemPickDialog> {

View file

@ -66,7 +66,7 @@ class _Content extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_ContentState createState() => _ContentState(); State<_Content> createState() => _ContentState();
} }
class _ContentState extends State<_Content> with SingleTickerProviderStateMixin { class _ContentState extends State<_Content> with SingleTickerProviderStateMixin {
@ -237,7 +237,7 @@ class _AddressRow extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_AddressRowState createState() => _AddressRowState(); State<_AddressRow> createState() => _AddressRowState();
} }
class _AddressRowState extends State<_AddressRow> { class _AddressRowState extends State<_AddressRow> {

View file

@ -24,7 +24,7 @@ class TileViewDialog<S, G, L> extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_TileViewDialogState createState() => _TileViewDialogState<S, G, L>(); State<TileViewDialog> createState() => _TileViewDialogState<S, G, L>();
} }
class _TileViewDialogState<S, G, L> extends State<TileViewDialog<S, G, L>> with SingleTickerProviderStateMixin { class _TileViewDialogState<S, G, L> extends State<TileViewDialog<S, G, L>> with SingleTickerProviderStateMixin {

View file

@ -14,7 +14,7 @@ class VideoSpeedDialog extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_VideoSpeedDialogState createState() => _VideoSpeedDialogState(); State<VideoSpeedDialog> createState() => _VideoSpeedDialogState();
} }
class _VideoSpeedDialogState extends State<VideoSpeedDialog> { class _VideoSpeedDialogState extends State<VideoSpeedDialog> {

View file

@ -17,7 +17,7 @@ class VideoStreamSelectionDialog extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_VideoStreamSelectionDialogState createState() => _VideoStreamSelectionDialogState(); State<VideoStreamSelectionDialog> createState() => _VideoStreamSelectionDialogState();
} }
class _VideoStreamSelectionDialogState extends State<VideoStreamSelectionDialog> { class _VideoStreamSelectionDialogState extends State<VideoStreamSelectionDialog> {

View file

@ -58,7 +58,7 @@ class _AlbumPickPage extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_AlbumPickPageState createState() => _AlbumPickPageState(); State<_AlbumPickPage> createState() => _AlbumPickPageState();
} }
class _AlbumPickPageState extends State<_AlbumPickPage> { class _AlbumPickPageState extends State<_AlbumPickPage> {

View file

@ -31,7 +31,7 @@ class FilterGridAppBar<T extends CollectionFilter> extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_FilterGridAppBarState createState() => _FilterGridAppBarState<T>(); State<FilterGridAppBar<T>> createState() => _FilterGridAppBarState<T>();
} }
class _FilterGridAppBarState<T extends CollectionFilter> extends State<FilterGridAppBar<T>> with SingleTickerProviderStateMixin { class _FilterGridAppBarState<T extends CollectionFilter> extends State<FilterGridAppBar<T>> with SingleTickerProviderStateMixin {

View file

@ -146,7 +146,7 @@ class FilterGrid<T extends CollectionFilter> extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_FilterGridState createState() => _FilterGridState<T>(); State<FilterGrid<T>> createState() => _FilterGridState<T>();
} }
class _FilterGridState<T extends CollectionFilter> extends State<FilterGrid<T>> { class _FilterGridState<T extends CollectionFilter> extends State<FilterGrid<T>> {
@ -338,7 +338,7 @@ class _FilterSectionedContent<T extends CollectionFilter> extends StatefulWidget
}); });
@override @override
_FilterSectionedContentState createState() => _FilterSectionedContentState<T>(); State<_FilterSectionedContent<T>> createState() => _FilterSectionedContentState<T>();
} }
class _FilterSectionedContentState<T extends CollectionFilter> extends State<_FilterSectionedContent<T>> { class _FilterSectionedContentState<T extends CollectionFilter> extends State<_FilterSectionedContent<T>> {

View file

@ -33,7 +33,7 @@ class InteractiveFilterTile<T extends CollectionFilter> extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_InteractiveFilterTileState createState() => _InteractiveFilterTileState<T>(); State<InteractiveFilterTile<T>> createState() => _InteractiveFilterTileState<T>();
} }
class _InteractiveFilterTileState<T extends CollectionFilter> extends State<InteractiveFilterTile<T>> { class _InteractiveFilterTileState<T extends CollectionFilter> extends State<InteractiveFilterTile<T>> {

View file

@ -19,7 +19,7 @@ class ChipHighlightOverlay extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_ChipHighlightOverlayState createState() => _ChipHighlightOverlayState(); State<ChipHighlightOverlay> createState() => _ChipHighlightOverlayState();
} }
class _ChipHighlightOverlayState extends State<ChipHighlightOverlay> { class _ChipHighlightOverlayState extends State<ChipHighlightOverlay> {

View file

@ -39,7 +39,7 @@ class HomePage extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_HomePageState createState() => _HomePageState(); State<HomePage> createState() => _HomePageState();
} }
class _HomePageState extends State<HomePage> { class _HomePageState extends State<HomePage> {

View file

@ -77,7 +77,7 @@ class _AddressRow extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_AddressRowState createState() => _AddressRowState(); State<_AddressRow> createState() => _AddressRowState();
} }
class _AddressRowState extends State<_AddressRow> { class _AddressRowState extends State<_AddressRow> {

View file

@ -78,7 +78,7 @@ class _Content extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_ContentState createState() => _ContentState(); State<_Content> createState() => _ContentState();
} }
class _ContentState extends State<_Content> with SingleTickerProviderStateMixin { class _ContentState extends State<_Content> with SingleTickerProviderStateMixin {

View file

@ -17,7 +17,7 @@ class SearchPage extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_SearchPageState createState() => _SearchPageState(); State<SearchPage> createState() => _SearchPageState();
} }
class _SearchPageState extends State<SearchPage> { class _SearchPageState extends State<SearchPage> {

View file

@ -11,7 +11,7 @@ class TimeToTakeActionTile extends StatefulWidget {
const TimeToTakeActionTile({Key? key}) : super(key: key); const TimeToTakeActionTile({Key? key}) : super(key: key);
@override @override
_TimeToTakeActionTileState createState() => _TimeToTakeActionTileState(); State<TimeToTakeActionTile> createState() => _TimeToTakeActionTileState();
} }
class _TimeToTakeActionTileState extends State<TimeToTakeActionTile> { class _TimeToTakeActionTileState extends State<TimeToTakeActionTile> {

View file

@ -15,7 +15,7 @@ class AppExportItemSelectionDialog extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_AppExportItemSelectionDialogState createState() => _AppExportItemSelectionDialogState(); State<AppExportItemSelectionDialog> createState() => _AppExportItemSelectionDialogState();
} }
class _AppExportItemSelectionDialogState extends State<AppExportItemSelectionDialog> { class _AppExportItemSelectionDialogState extends State<AppExportItemSelectionDialog> {

View file

@ -75,7 +75,7 @@ class QuickActionEditorBody<T extends Object> extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_QuickActionEditorBodyState createState() => _QuickActionEditorBodyState<T>(); State<QuickActionEditorBody<T>> createState() => _QuickActionEditorBodyState<T>();
} }
class _QuickActionEditorBodyState<T extends Object> extends State<QuickActionEditorBody<T>> with AutomaticKeepAliveClientMixin { class _QuickActionEditorBodyState<T extends Object> extends State<QuickActionEditorBody<T>> with AutomaticKeepAliveClientMixin {

View file

@ -39,7 +39,7 @@ class NavigationDrawerEditorPage extends StatefulWidget {
const NavigationDrawerEditorPage({Key? key}) : super(key: key); const NavigationDrawerEditorPage({Key? key}) : super(key: key);
@override @override
_NavigationDrawerEditorPageState createState() => _NavigationDrawerEditorPageState(); State<NavigationDrawerEditorPage> createState() => _NavigationDrawerEditorPageState();
} }
class _NavigationDrawerEditorPageState extends State<NavigationDrawerEditorPage> { class _NavigationDrawerEditorPageState extends State<NavigationDrawerEditorPage> {

View file

@ -18,7 +18,7 @@ class DrawerAlbumTab extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_DrawerAlbumTabState createState() => _DrawerAlbumTabState(); State<DrawerAlbumTab> createState() => _DrawerAlbumTabState();
} }
class _DrawerAlbumTabState extends State<DrawerAlbumTab> { class _DrawerAlbumTabState extends State<DrawerAlbumTab> {

View file

@ -20,7 +20,7 @@ class DrawerFixedListTab<T> extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_DrawerFixedListTabState<T> createState() => _DrawerFixedListTabState<T>(); State<DrawerFixedListTab<T>> createState() => _DrawerFixedListTabState<T>();
} }
class _DrawerFixedListTabState<T> extends State<DrawerFixedListTab<T>> { class _DrawerFixedListTabState<T> extends State<DrawerFixedListTab<T>> {

View file

@ -31,7 +31,7 @@ class StorageAccessPage extends StatefulWidget {
const StorageAccessPage({Key? key}) : super(key: key); const StorageAccessPage({Key? key}) : super(key: key);
@override @override
_StorageAccessPageState createState() => _StorageAccessPageState(); State<StorageAccessPage> createState() => _StorageAccessPageState();
} }
class _StorageAccessPageState extends State<StorageAccessPage> { class _StorageAccessPageState extends State<StorageAccessPage> {

View file

@ -14,7 +14,7 @@ class CrumbLine extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_CrumbLineState createState() => _CrumbLineState(); State<CrumbLine> createState() => _CrumbLineState();
} }
class _CrumbLineState extends State<CrumbLine> { class _CrumbLineState extends State<CrumbLine> {

View file

@ -23,7 +23,7 @@ class FilePicker extends StatefulWidget {
const FilePicker({Key? key}) : super(key: key); const FilePicker({Key? key}) : super(key: key);
@override @override
_FilePickerState createState() => _FilePickerState(); State<FilePicker> createState() => _FilePickerState();
} }
class _FilePickerState extends State<FilePicker> { class _FilePickerState extends State<FilePicker> {

View file

@ -33,7 +33,7 @@ class SettingsPage extends StatefulWidget {
const SettingsPage({Key? key}) : super(key: key); const SettingsPage({Key? key}) : super(key: key);
@override @override
_SettingsPageState createState() => _SettingsPageState(); State<SettingsPage> createState() => _SettingsPageState();
} }
class _SettingsPageState extends State<SettingsPage> with FeedbackMixin { class _SettingsPageState extends State<SettingsPage> with FeedbackMixin {

View file

@ -15,7 +15,7 @@ class EntryBackgroundSelector extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_EntryBackgroundSelectorState createState() => _EntryBackgroundSelectorState(); State<EntryBackgroundSelector> createState() => _EntryBackgroundSelectorState();
} }
class _EntryBackgroundSelectorState extends State<EntryBackgroundSelector> { class _EntryBackgroundSelectorState extends State<EntryBackgroundSelector> {

View file

@ -69,7 +69,7 @@ class _CutoutModeSwitch extends StatefulWidget {
const _CutoutModeSwitch({Key? key}) : super(key: key); const _CutoutModeSwitch({Key? key}) : super(key: key);
@override @override
_CutoutModeSwitchState createState() => _CutoutModeSwitchState(); State<_CutoutModeSwitch> createState() => _CutoutModeSwitchState();
} }
class _CutoutModeSwitchState extends State<_CutoutModeSwitch> { class _CutoutModeSwitchState extends State<_CutoutModeSwitch> {

View file

@ -17,7 +17,7 @@ class DbTab extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_DbTabState createState() => _DbTabState(); State<DbTab> createState() => _DbTabState();
} }
class _DbTabState extends State<DbTab> { class _DbTabState extends State<DbTab> {

View file

@ -18,7 +18,7 @@ class MetadataTab extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_MetadataTabState createState() => _MetadataTabState(); State<MetadataTab> createState() => _MetadataTabState();
} }
class _MetadataTabState extends State<MetadataTab> { class _MetadataTabState extends State<MetadataTab> {

View file

@ -35,7 +35,7 @@ class ViewerVerticalPageView extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_ViewerVerticalPageViewState createState() => _ViewerVerticalPageViewState(); State<ViewerVerticalPageView> createState() => _ViewerVerticalPageViewState();
} }
class _ViewerVerticalPageViewState extends State<ViewerVerticalPageView> { class _ViewerVerticalPageViewState extends State<ViewerVerticalPageView> {

View file

@ -49,7 +49,7 @@ class EntryViewerStack extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_EntryViewerStackState createState() => _EntryViewerStackState(); State<EntryViewerStack> createState() => _EntryViewerStackState();
} }
class _EntryViewerStackState extends State<EntryViewerStack> with FeedbackMixin, SingleTickerProviderStateMixin, WidgetsBindingObserver { class _EntryViewerStackState extends State<EntryViewerStack> with FeedbackMixin, SingleTickerProviderStateMixin, WidgetsBindingObserver {

View file

@ -61,7 +61,7 @@ class InfoRowGroup extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_InfoRowGroupState createState() => _InfoRowGroupState(); State<InfoRowGroup> createState() => _InfoRowGroupState();
} }
class _InfoRowGroupState extends State<InfoRowGroup> { class _InfoRowGroupState extends State<InfoRowGroup> {

View file

@ -143,7 +143,7 @@ class _InfoPageContent extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_InfoPageContentState createState() => _InfoPageContentState(); State<_InfoPageContent> createState() => _InfoPageContentState();
} }
class _InfoPageContentState extends State<_InfoPageContent> { class _InfoPageContentState extends State<_InfoPageContent> {

View file

@ -31,7 +31,7 @@ class LocationSection extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_LocationSectionState createState() => _LocationSectionState(); State<LocationSection> createState() => _LocationSectionState();
} }
class _LocationSectionState extends State<LocationSection> { class _LocationSectionState extends State<LocationSection> {
@ -165,7 +165,7 @@ class _AddressInfoGroup extends StatefulWidget {
const _AddressInfoGroup({required this.entry}); const _AddressInfoGroup({required this.entry});
@override @override
_AddressInfoGroupState createState() => _AddressInfoGroupState(); State<_AddressInfoGroup> createState() => _AddressInfoGroupState();
} }
class _AddressInfoGroupState extends State<_AddressInfoGroup> { class _AddressInfoGroupState extends State<_AddressInfoGroup> {

View file

@ -15,7 +15,7 @@ class MetadataThumbnails extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_MetadataThumbnailsState createState() => _MetadataThumbnailsState(); State<MetadataThumbnails> createState() => _MetadataThumbnailsState();
} }
class _MetadataThumbnailsState extends State<MetadataThumbnails> { class _MetadataThumbnailsState extends State<MetadataThumbnails> {

View file

@ -25,7 +25,7 @@ class XmpStructArrayCard extends StatefulWidget {
} }
@override @override
_XmpStructArrayCardState createState() => _XmpStructArrayCardState(); State<XmpStructArrayCard> createState() => _XmpStructArrayCardState();
} }
class _XmpStructArrayCardState extends State<XmpStructArrayCard> { class _XmpStructArrayCardState extends State<XmpStructArrayCard> {

View file

@ -25,7 +25,7 @@ class XmpDirTile extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_XmpDirTileState createState() => _XmpDirTileState(); State<XmpDirTile> createState() => _XmpDirTileState();
} }
class _XmpDirTileState extends State<XmpDirTile> { class _XmpDirTileState extends State<XmpDirTile> {

View file

@ -19,7 +19,7 @@ class OwnerProp extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_OwnerPropState createState() => _OwnerPropState(); State<OwnerProp> createState() => _OwnerPropState();
} }
class _OwnerPropState extends State<OwnerProp> { class _OwnerPropState extends State<OwnerProp> {

View file

@ -16,7 +16,7 @@ class MultiPageOverlay extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_MultiPageOverlayState createState() => _MultiPageOverlayState(); State<MultiPageOverlay> createState() => _MultiPageOverlayState();
} }
class _MultiPageOverlayState extends State<MultiPageOverlay> { class _MultiPageOverlayState extends State<MultiPageOverlay> {

View file

@ -18,7 +18,7 @@ class ViewerThumbnailPreview extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_ViewerThumbnailPreviewState createState() => _ViewerThumbnailPreviewState(); State<ViewerThumbnailPreview> createState() => _ViewerThumbnailPreviewState();
} }
class _ViewerThumbnailPreviewState extends State<ViewerThumbnailPreview> { class _ViewerThumbnailPreviewState extends State<ViewerThumbnailPreview> {

View file

@ -383,7 +383,7 @@ class _PlayToggler extends StatefulWidget {
}); });
@override @override
_PlayTogglerState createState() => _PlayTogglerState(); State<_PlayToggler> createState() => _PlayTogglerState();
} }
class _PlayTogglerState extends State<_PlayToggler> with SingleTickerProviderStateMixin { class _PlayTogglerState extends State<_PlayToggler> with SingleTickerProviderStateMixin {

View file

@ -30,7 +30,7 @@ class PanoramaPage extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_PanoramaPageState createState() => _PanoramaPageState(); State<PanoramaPage> createState() => _PanoramaPageState();
} }
class _PanoramaPageState extends State<PanoramaPage> { class _PanoramaPageState extends State<PanoramaPage> {

View file

@ -14,7 +14,7 @@ class SourceViewerPage extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_SourceViewerPageState createState() => _SourceViewerPageState(); State<SourceViewerPage> createState() => _SourceViewerPageState();
} }
class _SourceViewerPageState extends State<SourceViewerPage> { class _SourceViewerPageState extends State<SourceViewerPage> {

View file

@ -45,7 +45,7 @@ class EntryPageView extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_EntryPageViewState createState() => _EntryPageViewState(); State<EntryPageView> createState() => _EntryPageViewState();
} }
class _EntryPageViewState extends State<EntryPageView> { class _EntryPageViewState extends State<EntryPageView> {

View file

@ -18,7 +18,7 @@ class ErrorView extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_ErrorViewState createState() => _ErrorViewState(); State<ErrorView> createState() => _ErrorViewState();
} }
class _ErrorViewState extends State<ErrorView> { class _ErrorViewState extends State<ErrorView> {

View file

@ -28,7 +28,7 @@ class RasterImageView extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_RasterImageViewState createState() => _RasterImageViewState(); State<RasterImageView> createState() => _RasterImageViewState();
} }
class _RasterImageViewState extends State<RasterImageView> { class _RasterImageViewState extends State<RasterImageView> {
@ -345,7 +345,7 @@ class _RegionTile extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_RegionTileState createState() => _RegionTileState(); State<_RegionTile> createState() => _RegionTileState();
@override @override
void debugFillProperties(DiagnosticPropertiesBuilder properties) { void debugFillProperties(DiagnosticPropertiesBuilder properties) {

View file

@ -28,7 +28,7 @@ class VectorImageView extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_VectorImageViewState createState() => _VectorImageViewState(); State<VectorImageView> createState() => _VectorImageViewState();
} }
class _VectorImageViewState extends State<VectorImageView> { class _VectorImageViewState extends State<VectorImageView> {
@ -300,7 +300,7 @@ class _RegionTile extends StatefulWidget {
}) : super(key: key); }) : super(key: key);
@override @override
_RegionTileState createState() => _RegionTileState(); State<_RegionTile> createState() => _RegionTileState();
@override @override
void debugFillProperties(DiagnosticPropertiesBuilder properties) { void debugFillProperties(DiagnosticPropertiesBuilder properties) {

Some files were not shown because too many files have changed in this diff Show more