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);
@override
_AppReferenceState createState() => _AppReferenceState();
State<AppReference> createState() => _AppReferenceState();
}
class _AppReferenceState extends State<AppReference> {

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -24,7 +24,7 @@ class TileViewDialog<S, G, L> extends StatefulWidget {
}) : super(key: key);
@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 {

View file

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

View file

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

View file

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

View file

@ -31,7 +31,7 @@ class FilterGridAppBar<T extends CollectionFilter> extends StatefulWidget {
}) : super(key: key);
@override
_FilterGridAppBarState createState() => _FilterGridAppBarState<T>();
State<FilterGridAppBar<T>> createState() => _FilterGridAppBarState<T>();
}
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);
@override
_FilterGridState createState() => _FilterGridState<T>();
State<FilterGrid<T>> createState() => _FilterGridState<T>();
}
class _FilterGridState<T extends CollectionFilter> extends State<FilterGrid<T>> {
@ -338,7 +338,7 @@ class _FilterSectionedContent<T extends CollectionFilter> extends StatefulWidget
});
@override
_FilterSectionedContentState createState() => _FilterSectionedContentState<T>();
State<_FilterSectionedContent<T>> createState() => _FilterSectionedContentState<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);
@override
_InteractiveFilterTileState createState() => _InteractiveFilterTileState<T>();
State<InteractiveFilterTile<T>> createState() => _InteractiveFilterTileState<T>();
}
class _InteractiveFilterTileState<T extends CollectionFilter> extends State<InteractiveFilterTile<T>> {

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -75,7 +75,7 @@ class QuickActionEditorBody<T extends Object> extends StatefulWidget {
}) : super(key: key);
@override
_QuickActionEditorBodyState createState() => _QuickActionEditorBodyState<T>();
State<QuickActionEditorBody<T>> createState() => _QuickActionEditorBodyState<T>();
}
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);
@override
_NavigationDrawerEditorPageState createState() => _NavigationDrawerEditorPageState();
State<NavigationDrawerEditorPage> createState() => _NavigationDrawerEditorPageState();
}
class _NavigationDrawerEditorPageState extends State<NavigationDrawerEditorPage> {

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

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