Skip to content

NestedScrollView does not scroll beyond header when scrolling with ScrollController.animateTo #93818

@jeduden

Description

@jeduden

Steps to Reproduce

  1. Execute flutter run on the code sample
  2. Watch app. it scrolls automatically down.

Expected results:
It should scroll down to the end of the list of items.

Actual results:
It only scrolls down until the appbar is collapsed, then scrolling stops.

Code sample
import 'package:flutter/material.dart';

void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);
  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      title: "App",
      home: BugWidget(),
    );
  }
}

class BugWidget extends StatefulWidget {
  const BugWidget({Key? key}) : super(key: key);
  @override
  State<StatefulWidget> createState() {
    return BugState();
  }
}

class BugState extends State<BugWidget> {
  late ScrollController controller;

  @override
  void initState() {
    super.initState();
    controller = ScrollController();
    Future.delayed(const Duration(milliseconds: 1000), () {
      // this should scroll to the end of the list,
      // but stops after header is collapsed.
      // inner scroll view is not scrolled at all.
      controller.animateTo(150 + 30 * 48,
          duration: const Duration(milliseconds: 500), curve: Curves.easeInOut);
    });
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: NestedScrollView(
        controller: controller,
        headerSliverBuilder: (BuildContext context, bool innerBoxIsScrolled) {
          return <Widget>[
            SliverOverlapAbsorber(
              handle: NestedScrollView.sliverOverlapAbsorberHandleFor(context),
              sliver: SliverAppBar(
                title: const Text('Books'),
                pinned: true,
                expandedHeight: 150.0,
                forceElevated: innerBoxIsScrolled,
              ),
            ),
          ];
        },
        body: SafeArea(
          top: false,
          bottom: false,
          child: Builder(
            builder: (BuildContext context) {
              return CustomScrollView(
                slivers: <Widget>[
                  SliverOverlapInjector(
                    handle: NestedScrollView.sliverOverlapAbsorberHandleFor(
                        context),
                  ),
                  SliverPadding(
                    padding: const EdgeInsets.all(8.0),
                    sliver: SliverFixedExtentList(
                      itemExtent: 48.0,
                      delegate: SliverChildBuilderDelegate(
                        (BuildContext context, int index) {
                          return ListTile(
                            title: Text('Item $index'),
                          );
                        },
                        childCount: 30,
                      ),
                    ),
                  ),
                ],
              );
            },
          ),
        ),
      ),
    );
  }
}
Logs
[  +98 ms] executing: sysctl hw.optional.arm64
[  +19 ms] Exit code 1 from: sysctl hw.optional.arm64
[        ] sysctl: unknown oid 'hw.optional.arm64'
[   +6 ms] executing: [/usr/local/Caskroom/flutter/1.22.4/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H
[  +13 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
[        ] 18116933e77adc82f80866c928266a5b4f1ed645
[   +1 ms] executing: [/usr/local/Caskroom/flutter/1.22.4/flutter/] git tag --points-at 18116933e77adc82f80866c928266a5b4f1ed645
[ +128 ms] Exit code 0 from: git tag --points-at 18116933e77adc82f80866c928266a5b4f1ed645
[   +4 ms] 2.5.3
[  +11 ms] executing: [/usr/local/Caskroom/flutter/1.22.4/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[   +8 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[        ] origin/stable
[        ] executing: [/usr/local/Caskroom/flutter/1.22.4/flutter/] git ls-remote --get-url origin
[   +8 ms] Exit code 0 from: git ls-remote --get-url origin
[        ] https://github.com/flutter/flutter.git
[ +116 ms] executing: [/usr/local/Caskroom/flutter/1.22.4/flutter/] git rev-parse --abbrev-ref HEAD
[  +13 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[        ] stable
[   +9 ms] executing: sw_vers -productName
[  +20 ms] Exit code 0 from: sw_vers -productName
[        ] macOS
[        ] executing: sw_vers -productVersion
[  +19 ms] Exit code 0 from: sw_vers -productVersion
[        ] 11.4
[        ] executing: sw_vers -buildVersion
[  +20 ms] Exit code 0 from: sw_vers -buildVersion
[        ] 20F71
[  +97 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[   +4 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'WindowsUwpEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[  +60 ms] executing: /Users/jeduden/Library/Android/sdk/platform-tools/adb devices -l
[  +13 ms] executing: sysctl hw.optional.arm64
[   +6 ms] Exit code 1 from: sysctl hw.optional.arm64
[        ] sysctl: unknown oid 'hw.optional.arm64'
[        ] executing: xcrun xcodebuild -version
[ +165 ms] Exit code 0 from: xcrun xcodebuild -version
[        ] Xcode 13.0
           Build version 13A233
[   +3 ms] executing: xcrun xcdevice list --timeout 2
[   +5 ms] xcrun simctl list --json devices
[        ] executing: xcrun simctl list --json devices
[   +6 ms] executing: xcrun simctl list
[ +190 ms] Exit code 0 from: xcrun simctl list
[        ] == Device Types ==
           iPhone 4s (com.apple.CoreSimulator.SimDeviceType.iPhone-4s)
           iPhone 5 (com.apple.CoreSimulator.SimDeviceType.iPhone-5)
           iPhone 5s (com.apple.CoreSimulator.SimDeviceType.iPhone-5s)
           iPhone 6 Plus (com.apple.CoreSimulator.SimDeviceType.iPhone-6-Plus)
           iPhone 6 (com.apple.CoreSimulator.SimDeviceType.iPhone-6)
           iPhone 6s (com.apple.CoreSimulator.SimDeviceType.iPhone-6s)
           iPhone 6s Plus (com.apple.CoreSimulator.SimDeviceType.iPhone-6s-Plus)
           iPhone SE (1st generation) (com.apple.CoreSimulator.SimDeviceType.iPhone-SE)
           iPhone 7 (com.apple.CoreSimulator.SimDeviceType.iPhone-7)
           iPhone 7 Plus (com.apple.CoreSimulator.SimDeviceType.iPhone-7-Plus)
           iPhone 8 (com.apple.CoreSimulator.SimDeviceType.iPhone-8)
           iPhone 8 Plus (com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus)
           iPhone X (com.apple.CoreSimulator.SimDeviceType.iPhone-X)
           iPhone Xs (com.apple.CoreSimulator.SimDeviceType.iPhone-XS)
           iPhone Xs Max (com.apple.CoreSimulator.SimDeviceType.iPhone-XS-Max)
           iPhone Xʀ (com.apple.CoreSimulator.SimDeviceType.iPhone-XR)
           iPhone 11 (com.apple.CoreSimulator.SimDeviceType.iPhone-11)
           iPhone 11 Pro (com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro)
           iPhone 11 Pro Max (com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max)
           iPhone SE (2nd generation) (com.apple.CoreSimulator.SimDeviceType.iPhone-SE--2nd-generation-)
           iPhone 12 mini (com.apple.CoreSimulator.SimDeviceType.iPhone-12-mini)
           iPhone 12 (com.apple.CoreSimulator.SimDeviceType.iPhone-12)
           iPhone 12 Pro (com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro)
           iPhone 12 Pro Max (com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro-Max)
           iPhone 13 Pro (com.apple.CoreSimulator.SimDeviceType.iPhone-13-Pro)
           iPhone 13 Pro Max (com.apple.CoreSimulator.SimDeviceType.iPhone-13-Pro-Max)
           iPhone 13 mini (com.apple.CoreSimulator.SimDeviceType.iPhone-13-mini)
           iPhone 13 (com.apple.CoreSimulator.SimDeviceType.iPhone-13)
           iPod touch (7th generation) (com.apple.CoreSimulator.SimDeviceType.iPod-touch--7th-generation-)
           iPad 2 (com.apple.CoreSimulator.SimDeviceType.iPad-2)
           iPad Retina (com.apple.CoreSimulator.SimDeviceType.iPad-Retina)
           iPad Air (com.apple.CoreSimulator.SimDeviceType.iPad-Air)
           iPad mini 2 (com.apple.CoreSimulator.SimDeviceType.iPad-mini-2)
           iPad mini 3 (com.apple.CoreSimulator.SimDeviceType.iPad-mini-3)
           iPad mini 4 (com.apple.CoreSimulator.SimDeviceType.iPad-mini-4)
           iPad Air 2 (com.apple.CoreSimulator.SimDeviceType.iPad-Air-2)
           iPad Pro (9.7-inch) (com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-)
           iPad Pro (12.9-inch) (1st generation) (com.apple.CoreSimulator.SimDeviceType.iPad-Pro)
           iPad (5th generation) (com.apple.CoreSimulator.SimDeviceType.iPad--5th-generation-)
           iPad Pro (12.9-inch) (2nd generation) (com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---2nd-generation-)
           iPad Pro (10.5-inch) (com.apple.CoreSimulator.SimDeviceType.iPad-Pro--10-5-inch-)
           iPad (6th generation) (com.apple.CoreSimulator.SimDeviceType.iPad--6th-generation-)
           iPad (7th generation) (com.apple.CoreSimulator.SimDeviceType.iPad--7th-generation-)
           iPad Pro (11-inch) (1st generation) (com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch-)
           iPad Pro (12.9-inch) (3rd generation) (com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---3rd-generation-)
           iPad Pro (11-inch) (2nd generation) (com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch---2nd-generation-)
           iPad Pro (12.9-inch) (4th generation) (com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---4th-generation-)
           iPad mini (5th generation) (com.apple.CoreSimulator.SimDeviceType.iPad-mini--5th-generation-)
           iPad Air (3rd generation) (com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-)
           iPad (8th generation) (com.apple.CoreSimulator.SimDeviceType.iPad--8th-generation-)
           iPad (9th generation) (com.apple.CoreSimulator.SimDeviceType.iPad-9th-generation)
           iPad Air (4th generation) (com.apple.CoreSimulator.SimDeviceType.iPad-Air--4th-generation-)
           iPad Pro (11-inch) (3rd generation) (com.apple.CoreSimulator.SimDeviceType.iPad-Pro-11-inch-3rd-generation)
           iPad Pro (12.9-inch) (5th generation) (com.apple.CoreSimulator.SimDeviceType.iPad-Pro-12-9-inch-5th-generation)
           iPad mini (6th generation) (com.apple.CoreSimulator.SimDeviceType.iPad-mini-6th-generation)
           Apple TV (com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p)
           Apple TV 4K (com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K)
           Apple TV 4K (at 1080p) (com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p)
           Apple TV 4K (2nd generation) (com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-2nd-generation-4K)
           Apple TV 4K (at 1080p) (2nd generation) (com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-2nd-generation-1080p)
           Apple Watch - 38mm (com.apple.CoreSimulator.SimDeviceType.Apple-Watch-38mm)
           Apple Watch - 42mm (com.apple.CoreSimulator.SimDeviceType.Apple-Watch-42mm)
           Apple Watch Series 2 - 38mm (com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-38mm)
           Apple Watch Series 2 - 42mm (com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-42mm)
           Apple Watch Series 3 - 38mm (com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-38mm)
           Apple Watch Series 3 - 42mm (com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-42mm)
           Apple Watch Series 4 - 40mm (com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm)
           Apple Watch Series 4 - 44mm (com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm)
           Apple Watch Series 5 - 40mm (com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm)
           Apple Watch Series 5 - 44mm (com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm)
           Apple Watch SE - 40mm (com.apple.CoreSimulator.SimDeviceType.Apple-Watch-SE-40mm)
           Apple Watch SE - 44mm (com.apple.CoreSimulator.SimDeviceType.Apple-Watch-SE-44mm)
           Apple Watch Series 6 - 40mm (com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-6-40mm)
           Apple Watch Series 6 - 44mm (com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-6-44mm)
           Apple Watch Series 7 - 41mm (com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-7-41mm)
           Apple Watch Series 7 - 45mm (com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-7-45mm)
           == Runtimes ==
           iOS 12.2 (12.2 - 16E226) - com.apple.CoreSimulator.SimRuntime.iOS-12-2
           iOS 15.0 (15.0 - 19A339) - com.apple.CoreSimulator.SimRuntime.iOS-15-0
           tvOS 15.0 (15.0 - 19J344) - com.apple.CoreSimulator.SimRuntime.tvOS-15-0
           watchOS 8.0 (8.0 - 19R344) - com.apple.CoreSimulator.SimRuntime.watchOS-8-0
           == Devices ==
           -- iOS 12.2 --
               iPhone 5s (408E01A2-E2DA-45EA-B237-F4075D157266) (Shutdown)
               iPhone 6 Plus (988CB2DD-E92F-4D4E-99A0-9B90319D4359) (Shutdown)
               iPhone 6 (4E814DC1-BA91-4F25-8FA3-F92A7A23E511) (Shutdown)
               iPhone 6s (41491F38-F970-4F5D-A012-B92D5A53524A) (Shutdown)
               iPhone 6s Plus (66DB7B88-21B5-494D-BB06-AB1103DB6910) (Shutdown)
               iPhone SE (C6810F0C-7E1D-4A1D-A772-94C929773E98) (Shutdown)
               iPhone 7 (D830C871-73D9-4AD8-A0B6-8EE606EA858D) (Shutdown)
               iPhone 7 Plus (742B3431-6D30-4E7A-9D0B-963CAEE16038) (Shutdown)
               iPhone 8 (B6937D53-0E8E-4E3D-B03F-5B23FC8B00B1) (Shutdown)
               iPhone 8 Plus (58CE7A49-3852-42F8-A30B-4C528FF22284) (Shutdown)
               iPhone X (2531FEC4-D1F7-46D3-8F95-B5C890B79434) (Shutdown)
               iPhone Xs (BD92E228-486E-4FFF-87E1-96AE02CBB687) (Shutdown)
               iPhone Xs Max (F877C18C-E081-4965-8FAD-8969DFF6F594) (Shutdown)
               iPhone Xʀ (01605396-1968-4EF6-9FA1-E49B2EFB4F42) (Shutdown)
               iPad Air (8B51D7F6-37A5-4B2D-90BC-16CE5F2E4B93) (Shutdown)
               iPad Air 2 (D0399566-F251-4955-A6A5-D7F19F6481F8) (Shutdown)
               iPad Pro (9.7-inch) (7D98E928-E52E-464E-BB71-A50EF551E61B) (Shutdown)
               iPad Pro (12.9-inch) (551E3119-24A4-41DE-BD25-D46C66280BF1) (Shutdown)
               iPad (5th generation) (D381ABA9-96F6-443A-94EA-301ECB3DA032) (Shutdown)
               iPad Pro (12.9-inch) (2nd generation) (EF439F2E-A13F-4A67-8E13-D3AABA577553) (Shutdown)
               iPad Pro (10.5-inch) (195E04DE-0A26-4C02-A7E0-0C1BF6DE5891) (Shutdown)
               iPad (6th generation) (219BFCD9-45BF-48A6-AA72-F7EDE5B68124) (Shutdown)
               iPad Pro (11-inch) (FBA3818C-3B9F-4AEC-815E-8180310F264E) (Shutdown)
               iPad Pro (12.9-inch) (3rd generation) (33CF5E1A-8745-4F1F-B640-CEA0B3FE730F) (Shutdown)
               iPad Air (3rd generation) (DF16829D-0C2C-42AE-B22A-7584561DF391) (Shutdown)
           -- iOS 15.0 --
               iPhone 8 (FC0588FD-0538-47C2-88EB-04AA7D190C9E) (Booted)
               iPhone 8 Plus (3F7900A7-33A8-4176-8987-E9C98A4891BF) (Shutdown)
               iPhone 11 (A97F8A31-B923-46CF-8270-66FEE7CE5845) (Shutdown)
               iPhone 11 Pro (CFA4CD03-389B-4D1F-B4F9-43A484802174) (Shutdown)
               iPhone 11 Pro Max (56396665-03B3-4E5A-B14C-0972D83820AB) (Shutdown)
               iPhone SE (2nd generation) (F0C3052C-AE43-474B-B160-7DC6C519766F) (Shutdown)
               iPhone 12 mini (609FEEC4-7723-431B-8F76-2A9BB292DEDC) (Shutdown)
               iPhone 12 (E3017647-90AD-4A62-A2FA-74BFCA1FF5A0) (Shutdown)
               iPhone 12 Pro (4713B1DB-1357-4757-918C-CB64C7445F76) (Shutdown)
               iPhone 12 Pro Max (26247B50-915F-4DE7-A8FC-9612B8D4C3B3) (Shutdown)
               iPhone 13 Pro (477E0F59-71AF-45BD-B820-E5AA934D77C7) (Shutdown)
               iPhone 13 Pro Max (AF09269C-D1AC-4EA2-BC3C-52857442AE44) (Shutdown)
               iPhone 13 mini (3DA3CB7A-8898-48A7-8D03-38CE7F737458) (Shutdown)
               iPhone 13 (2F98B481-9087-4BC6-BA7D-D654EDEB97A6) (Shutdown)
               iPod touch (7th generation) (6EDA4AEE-3838-4ED3-9764-7F667ABE9164) (Shutdown)
               iPad Pro (9.7-inch) (5E31D353-79A3-4A08-A06F-9A011691F53E) (Shutdown)
               iPad (9th generation) (9722BB2D-F73E-4B7D-A653-9FF1E8419603) (Shutdown)
               iPad Air (4th generation) (5903E06C-DBEE-4D93-BBD6-61115C2D844B) (Shutdown)
               iPad Pro (11-inch) (3rd generation) (A2236281-E764-4790-9B4A-BB76EAFED02C) (Shutdown)
               iPad Pro (12.9-inch) (5th generation) (3FAEEA4B-6674-4FB0-883E-5A2C8DF182DB) (Shutdown)
               iPad mini (6th generation) (0630FB9F-888C-40A2-88D5-6CD3D9C47F49) (Shutdown)
           -- tvOS 15.0 --
               Apple TV (DF57C9A3-7F29-455D-934B-6A353BBBD977) (Shutdown)
               Apple TV 4K (2nd generation) (686545C7-F525-4C1F-81A1-DAAD88F2973B) (Shutdown)
               Apple TV 4K (at 1080p) (2nd generation) (E4CF5FAD-E045-4FC0-BEA0-934CA5CFC62D) (Shutdown)
           -- watchOS 8.0 --
               Apple Watch Series 5 - 40mm (BB10474E-9D17-42B4-87B4-54150041C472) (Shutdown)
               Apple Watch Series 5 - 44mm (599C13F1-82AD-4883-A7E7-D936FFC2CDC3) (Shutdown)
               Apple Watch Series 6 - 40mm (CDDF29EF-C910-4D24-B8B0-BF2B65A2C070) (Shutdown)
               Apple Watch Series 6 - 44mm (D381105B-9E26-4A1D-928F-EEB24AA95CC8) (Shutdown)
               Apple Watch Series 7 - 41mm (6AD95E48-E9EC-463F-8452-9618E7A56692) (Shutdown)
               Apple Watch Series 7 - 45mm (BBA884F5-4F3E-45EF-B453-4C878917C3E3) (Shutdown)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.iOS-12-4 --
               iPhone 5s (EC814459-8ED6-41D5-9810-20431E668F07) (Shutdown) (unavailable, runtime profile not found)
               iPhone 6 Plus (8A27C8BF-1514-4974-ADC5-64F3579F2397) (Shutdown) (unavailable, runtime profile not found)
               iPhone 6 (5F2A0E00-E339-4405-AA20-8CB89535836F) (Shutdown) (unavailable, runtime profile not found)
               iPhone 6s (BE71E0F1-5920-41B5-97AA-9AC9A81202CA) (Shutdown) (unavailable, runtime profile not found)
               iPhone 6s Plus (C0512067-5728-4B96-B58F-8C4BB8DA788B) (Shutdown) (unavailable, runtime profile not found)
               iPhone SE (68D4518E-01EA-48F3-940F-6AEA30C42A5D) (Shutdown) (unavailable, runtime profile not found)
               iPhone 7 (931C778E-0671-4208-A8F8-738BA9B3A741) (Shutdown) (unavailable, runtime profile not found)
               iPhone 7 Plus (E56E36DB-AB56-41AF-B533-D6DE7A08908E) (Shutdown) (unavailable, runtime profile not found)
               iPhone 8 (4BB0F495-08AC-43BE-A475-AF9ADC819C42) (Shutdown) (unavailable, runtime profile not found)
               iPhone 8 Plus (B9122B15-40ED-42DC-A497-96D16D52DF7D) (Shutdown) (unavailable, runtime profile not found)
               iPhone X (03CFB81C-738D-40FB-A05E-0536D8FE35A0) (Shutdown) (unavailable, runtime profile not found)
               iPhone Xs (7C67B9CD-99B8-43F7-BC64-067D3E61AF3B) (Shutdown) (unavailable, runtime profile not found)
               iPhone Xs Max (F4DF7764-FA55-4ABE-9DE9-BB524AD4A425) (Shutdown) (unavailable, runtime profile not found)
               iPhone Xʀ (36B2CCF0-001C-4FF4-A84D-68B2B7C2043E) (Shutdown) (unavailable, runtime profile not found)
               iPad Air (C8F1D447-85C2-45A3-8DCE-693F009CE1AC) (Shutdown) (unavailable, runtime profile not found)
               iPad Air 2 (E94A4672-8840-482D-A01A-501BFE05E88F) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (9.7-inch) (124A0D43-B17A-44CD-B828-3E5FBB26C4B6) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (12.9-inch) (7BA19D8E-3B88-428B-A0C5-06AFD1AC80FD) (Shutdown) (unavailable, runtime profile not found)
               iPad (5th generation) (E523EEB3-3CB5-46C8-A54E-4E5A502DB72E) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (12.9-inch) (2nd generation) (A0A59B62-5129-4531-8E48-7309D4F006C5) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (10.5-inch) (87A0BBDD-B154-4B46-977E-AD7356530502) (Shutdown) (unavailable, runtime profile not found)
               iPad (6th generation) (6808D26E-4B29-4F5B-9B28-361A23491A90) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (11-inch) (0A54D798-26FA-4A72-B42F-63EAB4702511) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (12.9-inch) (3rd generation) (9617AD4C-7116-4112-9904-1CD782D225A4) (Shutdown) (unavailable, runtime profile not found)
               iPad Air (3rd generation) (8D0D1737-C9EA-4325-964E-82D0E7FB4025) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.iOS-13-1 --
               iPhone 8 (34084551-F95F-4FAA-81F2-1538B0B1CE62) (Shutdown) (unavailable, runtime profile not found)
               iPhone 8 Plus (2512BA14-FEED-48EE-8288-028234848A7C) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 (CBDB2EC9-4320-41F9-B414-56DE2AB570A5) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 Pro (02962459-7DD0-460C-B398-4A97F4F3AED2) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 Pro Max (5069815C-E5A0-4351-8AB0-904C4278D934) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (9.7-inch) (06704CA9-CCE6-4CE6-BF44-B17289B393A4) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (11-inch) (B0D300A8-D01F-452B-869C-2CC221B436AD) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (12.9-inch) (3rd generation) (DB713217-8031-49B5-ACCB-8A50D62A6A6F) (Shutdown) (unavailable, runtime profile not found)
               iPad Air (3rd generation) (7AB19194-CCBF-42DD-AB62-FB2369D2720D) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.iOS-13-2 --
               iPhone 8 (46C7E14B-6F5F-4FF4-96FC-D0F651CA8AF7) (Shutdown) (unavailable, runtime profile not found)
               iPhone 8 Plus (851A98DE-4FAF-4520-8C74-634757C41628) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 (FA1A5452-F34C-46D3-995A-CE4AADBC8FD1) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 Pro (2EED996D-762E-4AB1-9C57-A1070006E1FC) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 Pro Max (9EA69594-827E-49DA-A2B9-AF317D1DF6BF) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (9.7-inch) (CDB72B9D-B4A2-4B79-A182-6B94E349BE57) (Shutdown) (unavailable, runtime profile not found)
               iPad (7th generation) (0D28A115-B221-4176-9D9B-17299E000067) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (11-inch) (D96E22CF-DBAE-4458-8E07-F8D1D9C24D0B) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (12.9-inch) (3rd generation) (0F856442-4A35-4E11-8C91-08D1E377C3E8) (Shutdown) (unavailable, runtime profile not found)
               iPad Air (3rd generation) (069534EC-9787-4B3F-8534-624C8BA65170) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.iOS-13-3 --
               iPhone 8 (F31188D3-0EC8-4465-A909-8E5388E37886) (Shutdown) (unavailable, runtime profile not found)
               iPhone 8 Plus (C5A379AC-C52F-45F6-B3D0-0A1A024C563F) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 (62678430-7621-4B0F-A94F-9119DAD7DAC6) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 Pro (29509E18-3654-4467-BE87-EE5584EC2B84) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 Pro Max (60CC46AC-E791-429F-A608-9A6AB05CA6A6) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (9.7-inch) (A67E5B0D-2F8C-4DF6-B9C0-1F4D17C40C58) (Shutdown) (unavailable, runtime profile not found)
               iPad (7th generation) (BDAD534E-9DD3-479B-9A78-449B17CDDA43) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (11-inch) (D7A3B3F3-E112-4275-8670-5C375E99061D) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (12.9-inch) (3rd generation) (949A2156-114D-4E94-A1BA-09B4F773F508) (Shutdown) (unavailable, runtime profile not found)
               iPad Air (3rd generation) (11B4FC98-AB8E-4CE2-8624-355AEC899D27) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.iOS-13-4 --
               iPhone 8 (CFFB9EF3-B817-40C2-8D9E-F92B4F93C4AA) (Shutdown) (unavailable, runtime profile not found)
               iPhone 8 Plus (9D45E36D-F3F8-4FFE-B0B9-4FC71D73BA8B) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 (02878E72-7871-4890-9992-0A006B4FA132) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 Pro (CD9C8E56-E0BE-4778-BB90-285957F613B4) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 Pro Max (2A5D936B-F1AE-40EB-9C5A-A8C3EC1C6820) (Shutdown) (unavailable, runtime profile not found)
               iPhone SE (2nd generation) (6104CF75-C0B5-4CCC-ABA0-F94627248E43) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (9.7-inch) (620F5D96-FC4C-4999-92CF-89E2CFE25125) (Shutdown) (unavailable, runtime profile not found)
               iPad (7th generation) (849A80D5-2EFC-44A2-88A4-98EAF032BDAD) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (11-inch) (2nd generation) (359776C5-88B3-4477-ACCF-65026ACD11A3) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (12.9-inch) (4th generation) (189FF58B-C21E-41BD-ABD1-42A947EA3656) (Shutdown) (unavailable, runtime profile not found)
               iPad Air (3rd generation) (E9F9A0D6-2DC2-4BE8-84EB-CDB75A1EBFF2) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.iOS-13-5 --
               iPhone 8 (0929D49B-C2C4-4277-BBB8-3E2AAE45E173) (Shutdown) (unavailable, runtime profile not found)
               iPhone 8 Plus (0322812E-ADD0-41AF-9C52-B61B53C63D7C) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 (D408C452-D040-43E1-BEBF-365DEC57E6D8) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 Pro (FB894749-0C3B-4535-B08E-41823F7E809F) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 Pro Max (1DEBC9FB-A677-4A2A-8C4F-D862A1E4EC9D) (Shutdown) (unavailable, runtime profile not found)
               iPhone SE (2nd generation) (73CA057A-622E-40A0-8667-CABD232EAFA7) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (9.7-inch) (EF017FD0-994A-49F9-9207-A67E321C250C) (Shutdown) (unavailable, runtime profile not found)
               iPad (7th generation) (5AE8D07C-6D1E-4C3F-9B03-7931D9FDFB15) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (11-inch) (2nd generation) (39F85057-EAA6-4CAE-B89B-908991532324) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (12.9-inch) (4th generation) (1B57D133-0CBD-46D2-AFD7-D76D05932005) (Shutdown) (unavailable, runtime profile not found)
               iPad Air (3rd generation) (091CC1EB-8DE0-4FF0-A34C-A5141EBE70EA) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.iOS-13-7 --
               iPhone 8 (BFD62472-50D4-47CE-8D56-64AF51AF0E01) (Shutdown) (unavailable, runtime profile not found)
               iPhone 8 Plus (9B0AB44E-D184-451C-9B46-4EFEF3FC291A) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 (6012CEB9-5502-4F97-9E52-F756B8AA75B4) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 Pro (0E260A22-1607-4C1E-802D-DA0FFE5FE191) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 Pro Max (516677A3-37CD-4FF4-87A7-C134BA91C4F1) (Shutdown) (unavailable, runtime profile not found)
               iPhone SE (2nd generation) (DE7C475D-D2B4-48A2-B36B-CE640D1DAFBF) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (9.7-inch) (B0BC64A6-B7AA-4690-9F13-952003709075) (Shutdown) (unavailable, runtime profile not found)
               iPad (7th generation) (FBDFD806-4A75-45DB-BD8D-AA022409A1B7) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (11-inch) (2nd generation) (48958339-8373-48C5-8D04-42F9C91940BF) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (12.9-inch) (4th generation) (A6BBFD3E-53E4-45CB-8FC0-7B1C8443B342) (Shutdown) (unavailable, runtime profile not found)
               iPad Air (3rd generation) (9DF73EA5-7FDF-453F-B483-57289173F8CD) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.iOS-14-0 --
               iPhone 8 (BEFD47CA-5AB1-4051-AE1C-EBCBA3665159) (Shutdown) (unavailable, runtime profile not found)
               iPhone 8 Plus (DFC01A63-3755-4D0F-826D-0F0625CF184F) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 (6899275E-7143-4406-B479-DFE2E4556F99) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 Pro (A0B57020-81C8-48CB-BC0B-C7D499638F2F) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 Pro Max (895E36DE-288C-4138-BED3-E38D7A9C5844) (Shutdown) (unavailable, runtime profile not found)
               iPhone SE (2nd generation) (111BA52E-B420-45D7-AE39-3E3E121B0D18) (Shutdown) (unavailable, runtime profile not found)
               iPod touch (7th generation) (9B4ABBD6-1A2D-4754-AFC7-F02EC6E40219) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (9.7-inch) (D1D1044C-B62C-4D77-842B-50BAD2EC0130) (Shutdown) (unavailable, runtime profile not found)
               iPad (7th generation) (1A4BCF0D-360C-46B5-8D03-F11BC775B113) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (11-inch) (2nd generation) (0EC60568-C9B0-4850-AA25-4BF3B5B57138) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (12.9-inch) (4th generation) (CD7FA7E4-B57E-4BF1-A42F-BF7D67C5FD37) (Shutdown) (unavailable, runtime profile not found)
               iPad Air (3rd generation) (DBB56E33-6C43-4BC9-B0A7-C962B092E83C) (Shutdown) (unavailable, runtime profile not found)
               iPad (8th generation) (52A89471-B4E3-4089-A8A2-98CB153DFDC9) (Shutdown) (unavailable, runtime profile not found)
               iPad Air (4th generation) (DA839BDD-AC2B-4BE7-8B1A-469B8FBDBA01) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.iOS-14-2 --
               iPhone 8 (AD7FD953-ED24-4126-BF18-6BE7F6982466) (Shutdown) (unavailable, runtime profile not found)
               iPhone 8 Plus (DC30D31E-E6B8-459B-81DC-D824A0E51BA4) (Shutdown) (unavailable, runtime profile not found)
               iPhone Xr 14.2 (5F399B42-2E6E-4306-AB75-B518000DC87F) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 (A447E3F0-BE6A-4B4F-955D-522CA5BD9ADF) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 Pro (F39BDA8B-EFBC-44E1-A7D4-E591AEDDDE1C) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 Pro Max (C92A62F8-ABDE-4261-AC22-CD9D49CDA2B2) (Shutdown) (unavailable, runtime profile not found)
               iPhone SE (2nd generation) (305EDB8C-B935-41FC-A6C5-DD17FD04795E) (Shutdown) (unavailable, runtime profile not found)
               iPhone 12 mini (4D4AF242-A759-46A5-B49C-BF8EC24A1ABB) (Shutdown) (unavailable, runtime profile not found)
               iPhone 12 (3E6FC8A2-24B9-4C1F-B5A1-61C5B54864EE) (Shutdown) (unavailable, runtime profile not found)
               iPhone 12 Pro (C7AA3813-25AB-4BC5-A4AC-781E56D3B78D) (Shutdown) (unavailable, runtime profile not found)
               iPhone 12 Pro Max (67B97840-D0AE-467D-9E09-DF2948CFA9A9) (Shutdown) (unavailable, runtime profile not found)
               iPod touch (7th generation) (BCBEE37E-478B-4838-B814-A3610E530382) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (9.7-inch) (E9E5823A-0D03-4A54-8DDD-3077C31F3D66) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (11-inch) (2nd generation) (17067DDA-4D77-4564-B5DD-66AB35C5BFD1) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (12.9-inch) (4th generation) (EAAD8C58-36FD-4767-8ECC-2AD04903488E) (Shutdown) (unavailable, runtime profile not found)
               iPad (8th generation) (0B64C55C-97C3-40CD-9345-19F11A7052F1) (Shutdown) (unavailable, runtime profile not found)
               iPad Air (4th generation) (B11958BE-41A6-4344-8FC1-1C910F47EB82) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.iOS-14-5 --
               iPhone 8 (46AD1CB0-6D04-49AD-8499-9E0DD921DA8B) (Shutdown) (unavailable, runtime profile not found)
               iPhone 8 Plus (1D66F942-FC6F-419B-A115-01CA0FEB1B4E) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 (9B006AB7-7BEB-4BFD-879A-75AC5491AF32) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 Pro (09A37CAF-64ED-4AA2-9E0E-29E6AB9870C0) (Shutdown) (unavailable, runtime profile not found)
               iPhone 11 Pro Max (7190FAA2-5E2B-4E14-B583-AC9C1FF53D0D) (Shutdown) (unavailable, runtime profile not found)
               iPhone SE (2nd generation) (295ECA09-47C4-4333-995E-A1F4CA12657C) (Shutdown) (unavailable, runtime profile not found)
               iPhone 12 mini (7F940B62-622A-4AA8-91AE-B05BDDCEF939) (Shutdown) (unavailable, runtime profile not found)
               iPhone 12 (21FD38A7-20D4-4062-9886-DCA4F7B5D97A) (Shutdown) (unavailable, runtime profile not found)
               iPhone 12 Pro (3444E87E-274F-4A0D-8EC1-E72869232EE9) (Shutdown) (unavailable, runtime profile not found)
               iPhone 12 Pro Max (74779D70-8545-496C-8E00-CA5528E41A7B) (Shutdown) (unavailable, runtime profile not found)
               iPod touch (7th generation) (2FADDB3F-3230-46F6-9684-819DCB68CCF4) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (9.7-inch) (DC863B7B-6396-410B-B069-C3398FB301C4) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (11-inch) (2nd generation) (97C02685-74CB-43F3-9C48-C39DAE0A82D5) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (12.9-inch) (4th generation) (54ED3E34-CB17-41FC-888B-C0E513D9FD5E) (Shutdown) (unavailable, runtime profile not found)
               iPad (8th generation) (6ECC5295-5472-42B3-BDA0-E5FA05B0FD6B) (Shutdown) (unavailable, runtime profile not found)
               iPad Air (4th generation) (890BF455-20AB-49C6-8EF3-46FF4A7051B7) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (11-inch) (3rd generation) (B4E58595-7529-48B4-A1D2-C4FCFA85A65D) (Shutdown) (unavailable, runtime profile not found)
               iPad Pro (12.9-inch) (5th generation) (A43E4BDA-9436-466F-9403-B2B969914D82) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.tvOS-12-2 --
               Apple TV (84064BAE-B192-469F-BDCC-1CE831E75405) (Shutdown) (unavailable, runtime profile not found)
               Apple TV 4K (F635D9C1-55C2-4313-AD75-53A1D4F8DECB) (Shutdown) (unavailable, runtime profile not found)
               Apple TV 4K (at 1080p) (5E5140E6-D617-4ED1-82E7-5E0F70A67AF0) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.tvOS-12-4 --
               Apple TV (0AE05F53-1C6F-40A2-938F-E5C7E6D3141D) (Shutdown) (unavailable, runtime profile not found)
               Apple TV 4K (564BDBAF-B030-4AB6-BEDB-AD3293490E20) (Shutdown) (unavailable, runtime profile not found)
               Apple TV 4K (at 1080p) (82541DD3-200F-4EBB-8976-083814D74621) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.tvOS-13-0 --
               Apple TV (B74B03EC-0CFA-4B3A-8816-84EC7C5620B4) (Shutdown) (unavailable, runtime profile not found)
               Apple TV 4K (181EC83C-7B2A-4576-91CE-B30A1172B139) (Shutdown) (unavailable, runtime profile not found)
               Apple TV 4K (at 1080p) (DEE3E3E6-E220-48D6-BCC9-F13D9E843CCE) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.tvOS-13-2 --
               Apple TV (02AB5E48-E12C-4860-AA77-7F49E158D278) (Shutdown) (unavailable, runtime profile not found)
               Apple TV 4K (D49FC49B-3E5D-4A2A-A2D2-4239FCF53046) (Shutdown) (unavailable, runtime profile not found)
               Apple TV 4K (at 1080p) (4A1ABB4D-3DCF-4F5E-A80C-8D85F3D36E5D) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.tvOS-13-3 --
               Apple TV (77E56265-1411-4E45-8E42-590E48CCDD6E) (Shutdown) (unavailable, runtime profile not found)
               Apple TV 4K (A6B73679-8EFE-479E-963B-84B64C7BCABA) (Shutdown) (unavailable, runtime profile not found)
               Apple TV 4K (at 1080p) (2D460DE2-2CAE-428C-A047-6C42C766131D) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.tvOS-13-4 --
               Apple TV (773B8D38-D2A8-4B6B-AEC0-8896FA9EDEB4) (Shutdown) (unavailable, runtime profile not found)
               Apple TV 4K (850B65DC-EBD8-41BA-8CFC-FA01879BB191) (Shutdown) (unavailable, runtime profile not found)
               Apple TV 4K (at 1080p) (E36B2132-602A-4CCE-90C2-B4DCA5AB9BCC) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.tvOS-14-0 --
               Apple TV (9C745967-1672-47FB-A5C8-BF70FC42C2DF) (Shutdown) (unavailable, runtime profile not found)
               Apple TV 4K (3BAC1C6F-EE78-4DBB-9533-044586E68BAE) (Shutdown) (unavailable, runtime profile not found)
               Apple TV 4K (at 1080p) (2242C0AB-859C-4190-988D-FD4C2BD1F1DA) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.tvOS-14-2 --
               Apple TV (8AEDAB0C-CAFA-4463-B006-7F0AB4DEF43A) (Shutdown) (unavailable, runtime profile not found)
               Apple TV 4K (D6CB170C-559F-4A6A-903B-658F0159EAF0) (Shutdown) (unavailable, runtime profile not found)
               Apple TV 4K (at 1080p) (24F6940B-CB82-4973-B90D-A2BAE78525CD) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.tvOS-14-5 --
               Apple TV (621F5FD0-FF0D-4A5D-BC9F-5B27E61DBD87) (Shutdown) (unavailable, runtime profile not found)
               Apple TV 4K (3AD51C6D-3285-4E11-8E0B-4555990EFC05) (Shutdown) (unavailable, runtime profile not found)
               Apple TV 4K (at 1080p) (ED231AA9-C2A2-4D57-B4FF-C0B41B707057) (Shutdown) (unavailable, runtime profile not found)
               Apple TV 4K (2nd generation) (7147A2C8-2C34-403E-8FB5-A2C180162F56) (Shutdown) (unavailable, runtime profile not found)
               Apple TV 4K (at 1080p) (2nd generation) (B749786E-136B-44FA-B5A4-6A81CF9D77F8) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.watchOS-5-2 --
               Apple Watch Series 2 - 38mm (2CE5AF59-2630-40A5-BB74-91F4418EF251) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 2 - 42mm (589E82EB-8DD1-4D13-BB27-A880880DC6AF) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 3 - 38mm (CFCB42B5-26D3-445F-B6FE-445BBCE8BC7F) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 3 - 42mm (415275A4-64E6-4E7C-A5E7-15CA0F9F8B50) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 4 - 40mm (0BF8AFB5-D727-43A9-9603-4A518AF24ABE) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 4 - 44mm (4926CE09-D0BC-4655-A64E-B10029A4495A) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.watchOS-5-3 --
               Apple Watch Series 2 - 38mm (46135C2B-247A-422F-8A5E-ACDF592EBA1A) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 2 - 42mm (D59F1FD9-3CEC-41A0-BCC0-A43C1F438905) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 3 - 38mm (B32D8E12-C380-406A-8B82-B1EA7F49B130) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 3 - 42mm (6B0181F3-B1FF-4284-B5C0-1840F47D05DB) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 4 - 40mm (B59916B1-053C-44E7-9241-537A20161023) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 4 - 44mm (44F84B3C-DF75-4BC4-832E-A8232EDD3597) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.watchOS-6-0 --
               Apple Watch Series 4 - 40mm (51FABC5F-5621-46B3-BA10-6BE8BE863CAA) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 4 - 44mm (9AE69108-B5B1-45CA-8064-858F50BD87C4) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 5 - 40mm (7131E9D1-8818-49F8-AB35-8576BDF35142) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 5 - 44mm (45E5AE2D-9681-4FAF-82BA-A97DA31E63ED) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.watchOS-6-1 --
               Apple Watch Series 4 - 40mm (C6129E9C-9E82-4660-B2EA-797FA08D8F02) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 4 - 44mm (102AD41A-B15F-4EDD-9216-ED5086280AA8) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 5 - 40mm (BFDE1827-0C39-4C42-8BBF-45686519F623) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 5 - 44mm (A0727364-7D13-49C5-A5D7-56F2CF3168E6) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.watchOS-6-2 --
               Apple Watch Series 4 - 40mm (EC6FDB18-3540-446E-9E63-0C5D07F359FB) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 4 - 44mm (FA8D0EBC-AC23-4513-A201-6517C15D3101) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 5 - 40mm (ACD6AE37-003C-44D9-AB86-3DCEE134E644) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 5 - 44mm (5C40EA8E-4AA1-4678-B35D-222886EE0ADC) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.watchOS-7-0 --
               Apple Watch Series 4 - 40mm (694B04B6-E971-4FE1-89B7-3F182937A6F6) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 4 - 44mm (14F971C2-C2C8-4A61-9C00-08D124778E76) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 5 - 40mm (A6D977CC-13C3-49D6-B699-AA3C06FFAEB1) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 5 - 44mm (5E8A56AE-C1C1-435B-86EC-893A6B72621E) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 6 - 40mm (5766B6E6-A998-4FFB-91C6-2E1993B9F40A) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 6 - 44mm (CF841D8C-3D7A-49F4-BF41-0E3D2AFC25B9) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.watchOS-7-1 --
               Apple Watch Series 5 - 40mm (85F97605-3574-4B32-9A44-219EBAE0DC3F) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 5 - 44mm (A5A0C1AF-DC65-46CB-A20C-DDB1E6E39992) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 6 - 40mm (2CA3126E-E971-4947-90FA-EEB02C7B8749) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 6 - 44mm (D3B0628B-6441-4C7E-A852-D1207B36B2DA) (Shutdown) (unavailable, runtime profile not found)
           -- Unavailable: com.apple.CoreSimulator.SimRuntime.watchOS-7-4 --
               Apple Watch Series 5 - 40mm (638DAD65-B939-4954-9A92-A1F86B8F4CEF) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 5 - 44mm (1E9DB029-A15D-4087-B330-AD5E552EFCCF) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 6 - 40mm (310E7D01-FE02-4467-B405-FA041841AFF4) (Shutdown) (unavailable, runtime profile not found)
               Apple Watch Series 6 - 44mm (3CEFDEAE-640F-4156-8861-83B37842ECA7) (Shutdown) (unavailable, runtime profile not found)
           == Device Pairs ==
           642720D4-C108-4FDF-9878-2E57E24F901E (active, disconnected)
               Watch: Apple Watch Series 5 - 40mm (BB10474E-9D17-42B4-87B4-54150041C472) (Shutdown)
               Phone: iPhone 12 Pro (4713B1DB-1357-4757-918C-CB64C7445F76) (Shutdown)
           95C9FDB7-E511-4B2C-9783-6BD8FC4AE03C (active, disconnected)
               Watch: Apple Watch Series 5 - 44mm (599C13F1-82AD-4883-A7E7-D936FFC2CDC3) (Shutdown)
               Phone: iPhone 12 Pro Max (26247B50-915F-4DE7-A8FC-9612B8D4C3B3) (Shutdown)
           70E1DE9D-B615-41DF-8324-DFDE62E199AB (active, disconnected)
               Watch: Apple Watch Series 6 - 40mm (CDDF29EF-C910-4D24-B8B0-BF2B65A2C070) (Shutdown)
               Phone: iPhone 13 Pro (477E0F59-71AF-45BD-B820-E5AA934D77C7) (Shutdown)
           12DEAF49-91D2-4B47-AABF-C03CE5306D33 (active, disconnected)
               Watch: Apple Watch Series 6 - 44mm (D381105B-9E26-4A1D-928F-EEB24AA95CC8) (Shutdown)
               Phone: iPhone 13 Pro Max (AF09269C-D1AC-4EA2-BC3C-52857442AE44) (Shutdown)
           EF00EC15-EAFF-4EAE-95D3-B6E05247B810 (active, disconnected)
               Watch: Apple Watch Series 7 - 41mm (6AD95E48-E9EC-463F-8452-9618E7A56692) (Shutdown)
               Phone: iPhone 13 mini (3DA3CB7A-8898-48A7-8D03-38CE7F737458) (Shutdown)
           87CDF8C6-840C-40BD-A289-E7689BB5341F (active, disconnected)
               Watch: Apple Watch Series 7 - 45mm (BBA884F5-4F3E-45EF-B453-4C878917C3E3) (Shutdown)
               Phone: iPhone 13 (2F98B481-9087-4BC6-BA7D-D654EDEB97A6) (Shutdown)
           99C0BC14-D585-4C32-AEE1-EE54B63F06D8 (unavailable)
               Watch: Apple Watch Series 4 - 44mm (4926CE09-D0BC-4655-A64E-B10029A4495A) (Shutdown)
               Phone: iPhone Xs (BD92E228-486E-4FFF-87E1-96AE02CBB687) (Shutdown)
           D4ABBBBE-9A5B-4B08-80FD-7448AA3B1B56 (unavailable)
               Watch: Apple Watch Series 4 - 40mm (B59916B1-053C-44E7-9241-537A20161023) (Shutdown)
               Phone: iPhone Xs (7C67B9CD-99B8-43F7-BC64-067D3E61AF3B) (Shutdown)
           E9677D91-B14B-4234-95FF-8DCF196A921D (unavailable)
               Watch: Apple Watch Series 4 - 44mm (44F84B3C-DF75-4BC4-832E-A8232EDD3597) (Shutdown)
               Phone: iPhone Xs Max (F4DF7764-FA55-4ABE-9DE9-BB524AD4A425) (Shutdown)
           96F89FE5-A33A-45A6-9F51-39626F4AF182 (unavailable)
               Watch: Apple Watch Series 5 - 40mm (7131E9D1-8818-49F8-AB35-8576BDF35142) (Shutdown)
               Phone: iPhone 11 Pro (02962459-7DD0-460C-B398-4A97F4F3AED2) (Shutdown)
           8EABE2F4-98C2-4998-BD4C-CE15785BB557 (unavailable)
               Watch: Apple Watch Series 5 - 44mm (45E5AE2D-9681-4FAF-82BA-A97DA31E63ED) (Shutdown)
               Phone: iPhone 11 Pro Max (5069815C-E5A0-4351-8AB0-904C4278D934) (Shutdown)
           31F7BA38-CF74-4667-8D5C-7CBF7D673076 (unavailable)
               Watch: Apple Watch Series 5 - 44mm (A0727364-7D13-49C5-A5D7-56F2CF3168E6) (Shutdown)
               Phone: iPhone 11 Pro (29509E18-3654-4467-BE87-EE5584EC2B84) (Shutdown)
           D31AE9C7-4E8A-4C76-A3AC-02032D9304B0 (unavailable)
               Watch: Apple Watch Series 5 - 40mm (ACD6AE37-003C-44D9-AB86-3DCEE134E644) (Shutdown)
               Phone: iPhone 11 Pro (0E260A22-1607-4C1E-802D-DA0FFE5FE191) (Shutdown)
           50D8A33B-1E19-413C-843B-AACAF7F49B7F (unavailable)
               Watch: Apple Watch Series 5 - 44mm (5C40EA8E-4AA1-4678-B35D-222886EE0ADC) (Shutdown)
               Phone: iPhone 11 Pro Max (516677A3-37CD-4FF4-87A7-C134BA91C4F1) (Shutdown)
           564A47AA-13F5-40F6-95A6-E0D3A128F582 (unavailable)
               Watch: Apple Watch Series 6 - 40mm (5766B6E6-A998-4FFB-91C6-2E1993B9F40A) (Shutdown)
               Phone: iPhone 11 Pro (A0B57020-81C8-48CB-BC0B-C7D499638F2F) (Shutdown)
           3B685919-CE45-4C6F-B580-6F2ACC8CAE96 (unavailable)
               Watch: Apple Watch Series 6 - 44mm (CF841D8C-3D7A-49F4-BF41-0E3D2AFC25B9) (Shutdown)
               Phone: iPhone 11 Pro Max (895E36DE-288C-4138-BED3-E38D7A9C5844) (Shutdown)
           61F47511-672F-40C9-8DA6-3CE08B0DC679 (unavailable)
               Watch: Apple Watch Series 5 - 40mm (85F97605-3574-4B32-9A44-219EBAE0DC3F) (Shutdown)
               Phone: iPhone 12 mini (4D4AF242-A759-46A5-B49C-BF8EC24A1ABB) (Shutdown)
           39A52C9F-39D1-4196-86CE-E34F19166457 (unavailable)
               Watch: Apple Watch Series 5 - 44mm (A5A0C1AF-DC65-46CB-A20C-DDB1E6E39992) (Shutdown)
               Phone: iPhone 12 (3E6FC8A2-24B9-4C1F-B5A1-61C5B54864EE) (Shutdown)
           C744CCA8-6424-464F-A0B3-E00C27FBA101 (unavailable)
               Watch: Apple Watch Series 6 - 40mm (2CA3126E-E971-4947-90FA-EEB02C7B8749) (Shutdown)
               Phone: iPhone 12 Pro (C7AA3813-25AB-4BC5-A4AC-781E56D3B78D) (Shutdown)
           986CA30D-43D4-40B2-A992-8CE51FF866A1 (unavailable)
               Watch: Apple Watch Series 6 - 44mm (D3B0628B-6441-4C7E-A852-D1207B36B2DA) (Shutdown)
               Phone: iPhone 12 Pro Max (67B97840-D0AE-467D-9E09-DF2948CFA9A9) (Shutdown)
           A499A3C1-33E1-4A2D-8571-AC898126B3CB (unavailable)
               Watch: Apple Watch Series 5 - 40mm (638DAD65-B939-4954-9A92-A1F86B8F4CEF) (Shutdown)
               Phone: iPhone 12 mini (7F940B62-622A-4AA8-91AE-B05BDDCEF939) (Shutdown)
           1586FC1A-850F-4744-9BAE-2F99C743AAC5 (unavailable)
               Watch: Apple Watch Series 5 - 44mm (1E9DB029-A15D-4087-B330-AD5E552EFCCF) (Shutdown)
               Phone: iPhone 12 (21FD38A7-20D4-4062-9886-DCA4F7B5D97A) (Shutdown)
           64D3438D-D778-4D54-87B3-E94F0F7FCB3D (unavailable)
               Watch: Apple Watch Series 6 - 40mm (310E7D01-FE02-4467-B405-FA041841AFF4) (Shutdown)
               Phone: iPhone 12 Pro (3444E87E-274F-4A0D-8EC1-E72869232EE9) (Shutdown)
           2A7A9799-1E07-439D-B2DC-FFDF34AC8ECE (unavailable)
               Watch: Apple Watch Series 6 - 44mm (3CEFDEAE-640F-4156-8861-83B37842ECA7) (Shutdown)
               Phone: iPhone 12 Pro Max (74779D70-8545-496C-8E00-CA5528E41A7B) (Shutdown)
[  +57 ms] List of devices attached
[ +172 ms] {
                      "devices" : {
                        "com.apple.CoreSimulator.SimRuntime.tvOS-13-2" : [
                          {
                            "availabilityError" : "runtime profile not found",
                            "dataPath" : "\/Users\/jeduden\/Library\/Developer\/CoreSimulator\/Devices\/02AB5E48-E12C-4860-AA77-7F49E158D278\/data",
                            "logPath" : "\/Users\/jeduden\/Library\/Logs\/CoreSimulator\/02AB5E48-E12C-4860-AA77-7F49E158D278",
                            "udid" : "02AB5E48-E12C-4860-AA77-7F49E158D278",
                            "isAvailable" : false,
                            "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
                            "state" : "Shutdown",
                            "name" : "Apple TV"
                          },
                          {
                            "availabilityError" : "runtime profile not found",
                            "dataPath" : "\/Users\/jeduden\/Library\/Developer\/CoreSimulator\/Devices\/D49FC49B-3E5D-4A2A-A2D2-4239FCF53046\/data",
                            "logPath" : "\/Users\/jeduden\/Library\/Logs\/CoreSimulator\/D49FC49B-3E5D-4A2A-A2D2-4239FCF53046",
                            "udid" : "D49FC49B-3E5D-4A2A-A2D2-4239FCF53046",
                            "isAvailable" : false,
                            "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
                            "state" : "Shutdown",
                            "name" : "Apple TV 4K"
                          },
                          {
                            "availabilityError" : "runtime profile not found",
                            "dataPath" : "\/Users\/jeduden\/Library\/Developer\/CoreSimulator\/Devices\/4A1ABB4D-3DCF-4F5E-A80C-8D85F3D36E5D\/data",
                            "logPath" : "\/Users\/jeduden\/Library\/Logs\/CoreSimulator\/4A1ABB4D-3DCF-4F5E-A80C-8D85F3D36E5D",
                            "udid" : "4A1ABB4D-3DCF-4F5E-A80C-8D85F3D36E5D",
                            "isAvailable" : false,
                            "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
                            "state" : "Shutdown",
                            "name" : "Apple TV 4K (at 1080p)"
                          }
                        ],
                        "com.apple.CoreSimulator.SimRuntime.watchOS-7-4" : [
                          {
                            "availabilityError" : "runtime profile not found",
                            "dataPath" : "\/Users\/jeduden\/Library\/Developer\/CoreSimulator\/Devices\/638DAD65-B939-4954-9A92-A1F86B8F4CEF\/data",
                            "logPath" : "\/Users\/jeduden\/Library\/Logs\/CoreSimulator\/638DAD65-B939-4954-9A92-A1F86B8F4CEF",
                            "udid" : "638DAD65-B939-4954-9A92-A1F86B8F4CEF",
                            "isAvailable" : false,
                            "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm",
                            "state" : "Shutdown",
                            "name" : "Apple Watch Series 5 - 40mm"
                          },
                          {
                            "availabilityError" : "runtime profile not found",
                            "dataPath" : "\/Users\/jeduden\/Library\/Developer\/CoreSimulator\/Devices\/1E9DB029-A15D-4087-B330-AD5E552EFCCF\/data",
                            "logPath" : "\/Users\/jeduden\/Library\/Logs\/CoreSimulator\/1E9DB029-A15D-4087-B330-AD5E552EFCCF",
                            "udid" : "1E9DB029-A15D-4087-B330-AD5E552EFCCF",
                            "isAvailable" : false,
                            "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm",
                            "state" : "Shutdown",
                            "name" : "Apple Watch Series 5 - 44mm"
                          },
                          {
                            "availabilityError" : "runtime profile not found",
                            "dataPath" : "\/Users\/jeduden\/Library\/Developer\/CoreSimulator\/Devices\/310E7D01-FE02-4467-B405-FA041841AFF4\/data",
                            "logPath" : "\/Users\/jeduden\/Library\/Logs\/CoreSimulator\/310E7D01-FE02-4467-B405-FA041841AFF4",
                            "udid" : "310E7D01-FE02-4467-B405-FA041841AFF4",
                            "isAvailable" : false,
                            "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-6-40mm",
                            "state" : "Shutdown",
                            "name" : "Apple Watch Series 6 - 40mm"
                          },
                          {
                            "availabilityError" : "runtime profile not found",
                            "dataPath" : "\/Users\/jeduden\/Library\/Developer\/CoreSimulator\/Devices\/3CEFDEAE-640F-4156-8861-83B37842ECA7\/data",
                            "logPath" : "\/Users\/jeduden\/Library\/Logs\/CoreSimulator\/3CEFDEAE-640F-4156-8861-83B37842ECA7",
                            "udid" : "3CEFDEAE-640F-4156-8861-83B37842ECA7",
                            "isAvailable" : false,
                            "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-6-44mm",
                            "state" : "Shutdown",
                            "name" : "Apple Watch Series 6 - 44mm"
                          }
                        ],
                        "com.apple.CoreSimulator.SimRuntime.watchOS-7-1" : [
                          {
                            "availabilityError" : "runtime profile not found",
                            "dataPath" : "\/Users\/jeduden\/Library\/Developer\/CoreSimulator\/Devices\/85F97605-3574-4B32-9A44-219EBAE0DC3F\/data",
                            "logPath" : "\/Users\/jeduden\/Library\/Logs\/CoreSimulator\/85F97605-3574-4B32-9A44-219EBAE0DC3F",
                            "udid" : "85F97605-3574-4B32-9A44-219EBAE0DC3F",
                            "isAvailable" : false,
                            "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm",
                            "state" : "Shutdown",
                            "name" : "Apple Watch Series 5 - 40mm"
                          },
                          {
                            "availabilityError" : "runtime profile not found",
                            "dataPath" : "\/Users\/jeduden\/Library\/Developer\/CoreSimulator\/Devices\/A5A0C1AF-DC65-46CB-A20C-DDB1E6E39992\/data",
                            "logPath" : "\/Users\/jeduden\/Library\/Logs\/CoreSimulator\/A5A0C1AF-DC65-46CB-A20C-DDB1E6E39992",
                            "udid" : "A5A0C1AF-DC65-46CB-A20C-DDB1E6E39992",
                            "isAvailable" : false,
                            "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm",
                            "state" : "Shutdown",
                            "name" : "Apple Watch Series 5 - 44mm"
                          },
                          {
                            "availabilityError" : "runtime profile not found",
                            "dataPath" : "\/Users\/jeduden\/Library\/Developer\/CoreSimulator\/Devices\/2CA3126E-E971-4947-90FA-EEB02C7B8749\/data",
                            "logPath" : "\/Users\/jeduden\/Library\/Logs\/CoreSimulator\/2CA3126E-E971-4947-90FA-EEB02C7B8749",
                            "udid" : "2CA3126E-E971-4947-90FA-EEB02C7B8749",
                            "isAvailable" : false,
                            "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-6-40mm",
                            "state" : "Shutdown",
                            "name" : "Apple Watch Series 6 - 40mm"
                          },
                          {
                            "availabilityError" : "runtime profile not found",
                            "dataPath" : "\/Users\/jeduden\/Library\/Developer\/CoreSimulator\/Devices\/D3B0628B-6441-4C7E-A852-D1207B36B2DA\/data",
                            "logPath" : "\/Users\/jeduden\/Library\/Logs\/CoreSimulator\/D3B0628B-6441-4C7E-A852-D1207B36B2DA",
                            "udid" : "D3B0628B-6441-4C7E-A852-D1207B36B2DA",
                            "isAvailable" : false,
                            "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-6-44mm",
                            "state" : "Shutdown",
                            "name" : "Apple Watch Series 6 - 44mm"
                          }
                        ],
                        "com.apple.CoreSimulator.SimRuntime.watchOS-8-0" : [
                          {
                            "dataPath" : "\/Users\/jeduden\/Library\/Developer\/CoreSimulator\/Devices\/BB10474E-9D17-42B4-87B4-54150041C472\/data",
                            "logPath" : "\/Users\/jeduden\/Library\/Logs\/CoreSimulator\/BB10474E-9D17-42B4-87B4-54150041C472",
                            "udid" : "BB10474E-9D17-42B4-87B4-54150041C472",
                            "isAvailable" : true,
                            "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm",
                            "state" : "Shutdown",
                            "name" : "Apple Watch Series 5 - 40mm"
                          },
                          {
                            "dataPath" : "\/Users\/jeduden\/Library\/Developer\/CoreSimulator\/Devices\/599C13F1-82AD-4883-A7E7-D936FFC2CDC3\/data",
                            "logPath" : "\/Users\/jeduden\/Library\/Logs\/CoreSimulator\/599C13F1-82AD-4883-A7E7-D936FFC2CDC3",
                            "udid" : "599C13F1-82AD-4883-A7E7-D936FFC2CDC3",
                            "isAvailable" : true,
                            "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm",
                            "state" : "Shutdown",
                            "name" : "Apple Watch Series 5 - 44mm"
                          },
                          {
                            "dataPath" : "\/Users\/jeduden\/Library\/Developer\/CoreSimulator\/Devices\/CDDF29EF-C910-4D24-B8B0-BF2B65A2C070\/data",
                            "logPath" : "\/Users\/jeduden\/Library\/Logs\/CoreSimulator\/CDDF29EF-C910-4D24-B8B0-BF2B65A2C070",
                            "udid" : "CDDF29EF-C910-4D24-B8B0-BF2B65A2C070",
                            "isAvailable" : true,
                            "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-6-40mm",
                            "state" : "Shutdown",
                            "name" : "Apple Watch Series 6 - 40mm"
                          },
                          {
    [...snip...]
              
                    /usr/bin/codesign -r- --display /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
                    Probing signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
                    /usr/bin/codesign -r- --display /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
                    Probing signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
                    /usr/bin/codesign -r- --display /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
                    Probing signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
                    /usr/bin/codesign -r- --display /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
                    Probing signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
                    /usr/bin/codesign -r- --display /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
                    Probing signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
                    /usr/bin/codesign -r- --display /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
                    Codesigning /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
                    /usr/bin/codesign --force --sign - --verbose /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
                    Codesigning /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
                    /usr/bin/codesign --force --sign - --verbose /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
                    Codesigning /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
                    /usr/bin/codesign --force --sign - --verbose /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
                    Codesigning /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
                    /usr/bin/codesign --force --sign - --verbose /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
                    Codesigning /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
                    /usr/bin/codesign --force --sign - --verbose /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
                    Codesigning /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
                    Codesigning /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
                    /usr/bin/codesign --force --sign - --verbose /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
                    Codesigning /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
                    /usr/bin/codesign --force --sign - --verbose /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
                    /usr/bin/codesign --force --sign - --verbose /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
                    Codesigning /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
                    /usr/bin/codesign --force --sign - --verbose /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
                    Codesigning /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
                    /usr/bin/codesign --force --sign - --verbose /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
                    Codesigning /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
                    /usr/bin/codesign --force --sign - --verbose /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
                    Codesigning /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
                    /usr/bin/codesign --force --sign - --verbose /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
                    Codesigning /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
                    /usr/bin/codesign --force --sign - --verbose /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
                    Probing signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
                    /usr/bin/codesign -r- --display /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
                    Probing signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
                    /usr/bin/codesign -r- --display /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
                    Probing signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
                    /usr/bin/codesign -r- --display /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
                    Probing signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
                    /usr/bin/codesign -r- --display /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
                    Code signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib is unchanged; keeping original
                    Code signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib is unchanged; keeping original
                    Code signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib is unchanged; keeping original
                    Probing signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
                    /usr/bin/codesign -r- --display /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
                    Code signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib is unchanged; keeping original
                    Probing signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
                    /usr/bin/codesign -r- --display /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
                    Probing signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
                    /usr/bin/codesign -r- --display /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
                    Probing signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
                    /usr/bin/codesign -r- --display /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
                    Probing signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
                    /usr/bin/codesign -r- --display /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
                    Code signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib is unchanged; keeping original
                    Code signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib is unchanged; keeping original
                    Probing signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
                    /usr/bin/codesign -r- --display /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
                    Code signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib is unchanged; keeping original
                    Code signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib is unchanged; keeping original
                    Code signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib is unchanged; keeping original
                    Probing signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
                    /usr/bin/codesign -r- --display /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
                    Code signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib is unchanged; keeping original
                    Code signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib is unchanged; keeping original
                    Probing signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
                    /usr/bin/codesign -r- --display /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
                    Code signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib is unchanged; keeping original
                    Probing signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
                    /usr/bin/codesign -r- --display /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
                    Code signature of /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib is unchanged; keeping original

                    CodeSign /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app (in target 'Runner' from project 'Runner')
                        cd /Users/jeduden/dev/git/nestedscrollviewbug/ios
                        export CODESIGN_ALLOCATE\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate

                        Signing Identity:     "-"

                        /usr/bin/codesign --force --sign - --entitlements
                        /Users/jeduden/Library/Developer/Xcode/DerivedData/Runner-donaqnzswdnormebjtgmkhvfmaws/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent
                        --timestamp\=none --generate-entitlement-der /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app

                    ** BUILD SUCCEEDED **


                    --- xcodebuild: WARNING: Using the first of multiple matching destinations:
                    { platform:iOS Simulator, id:dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder, name:Any iOS Simulator Device }
                    { platform:iOS Simulator, id:D381ABA9-96F6-443A-94EA-301ECB3DA032, OS:12.2, name:iPad (5th generation) }
                    { platform:iOS Simulator, id:219BFCD9-45BF-48A6-AA72-F7EDE5B68124, OS:12.2, name:iPad (6th generation) }
                    { platform:iOS Simulator, id:9722BB2D-F73E-4B7D-A653-9FF1E8419603, OS:15.0, name:iPad (9th generation) }
                    { platform:iOS Simulator, id:8B51D7F6-37A5-4B2D-90BC-16CE5F2E4B93, OS:12.2, name:iPad Air }
                    { platform:iOS Simulator, id:DF16829D-0C2C-42AE-B22A-7584561DF391, OS:12.2, name:iPad Air (3rd generation) }
                    { platform:iOS Simulator, id:5903E06C-DBEE-4D93-BBD6-61115C2D844B, OS:15.0, name:iPad Air (4th generation) }
                    { platform:iOS Simulator, id:D0399566-F251-4955-A6A5-D7F19F6481F8, OS:12.2, name:iPad Air 2 }
                    { platform:iOS Simulator, id:7D98E928-E52E-464E-BB71-A50EF551E61B, OS:12.2, name:iPad Pro (9.7-inch) }
                    { platform:iOS Simulator, id:5E31D353-79A3-4A08-A06F-9A011691F53E, OS:15.0, name:iPad Pro (9.7-inch) }
                    { platform:iOS Simulator, id:195E04DE-0A26-4C02-A7E0-0C1BF6DE5891, OS:12.2, name:iPad Pro (10.5-inch) }
                    { platform:iOS Simulator, id:FBA3818C-3B9F-4AEC-815E-8180310F264E, OS:12.2, name:iPad Pro (11-inch) }
                    { platform:iOS Simulator, id:A2236281-E764-4790-9B4A-BB76EAFED02C, OS:15.0, name:iPad Pro (11-inch) (3rd generation) }
                    { platform:iOS Simulator, id:551E3119-24A4-41DE-BD25-D46C66280BF1, OS:12.2, name:iPad Pro (12.9-inch) }
                    { platform:iOS Simulator, id:EF439F2E-A13F-4A67-8E13-D3AABA577553, OS:12.2, name:iPad Pro (12.9-inch) (2nd generation) }
                    { platform:iOS Simulator, id:33CF5E1A-8745-4F1F-B640-CEA0B3FE730F, OS:12.2, name:iPad Pro (12.9-inch) (3rd generation) }
                    { platform:iOS Simulator, id:3FAEEA4B-6674-4FB0-883E-5A2C8DF182DB, OS:15.0, name:iPad Pro (12.9-inch) (5th generation) }
                    { platform:iOS Simulator, id:0630FB9F-888C-40A2-88D5-6CD3D9C47F49, OS:15.0, name:iPad mini (6th generation) }
                    { platform:iOS Simulator, id:408E01A2-E2DA-45EA-B237-F4075D157266, OS:12.2, name:iPhone 5s }
                    { platform:iOS Simulator, id:4E814DC1-BA91-4F25-8FA3-F92A7A23E511, OS:12.2, name:iPhone 6 }
                    { platform:iOS Simulator, id:988CB2DD-E92F-4D4E-99A0-9B90319D4359, OS:12.2, name:iPhone 6 Plus }
                    { platform:iOS Simulator, id:41491F38-F970-4F5D-A012-B92D5A53524A, OS:12.2, name:iPhone 6s }
                    { platform:iOS Simulator, id:66DB7B88-21B5-494D-BB06-AB1103DB6910, OS:12.2, name:iPhone 6s Plus }
                    { platform:iOS Simulator, id:D830C871-73D9-4AD8-A0B6-8EE606EA858D, OS:12.2, name:iPhone 7 }
                    { platform:iOS Simulator, id:742B3431-6D30-4E7A-9D0B-963CAEE16038, OS:12.2, name:iPhone 7 Plus }
                    { platform:iOS Simulator, id:B6937D53-0E8E-4E3D-B03F-5B23FC8B00B1, OS:12.2, name:iPhone 8 }
                    { platform:iOS Simulator, id:FC0588FD-0538-47C2-88EB-04AA7D190C9E, OS:15.0, name:iPhone 8 }
                    { platform:iOS Simulator, id:58CE7A49-3852-42F8-A30B-4C528FF22284, OS:12.2, name:iPhone 8 Plus }
                    { platform:iOS Simulator, id:3F7900A7-33A8-4176-8987-E9C98A4891BF, OS:15.0, name:iPhone 8 Plus }
                    { platform:iOS Simulator, id:A97F8A31-B923-46CF-8270-66FEE7CE5845, OS:15.0, name:iPhone 11 }
                    { platform:iOS Simulator, id:CFA4CD03-389B-4D1F-B4F9-43A484802174, OS:15.0, name:iPhone 11 Pro }
                    { platform:iOS Simulator, id:56396665-03B3-4E5A-B14C-0972D83820AB, OS:15.0, name:iPhone 11 Pro Max }
                    { platform:iOS Simulator, id:E3017647-90AD-4A62-A2FA-74BFCA1FF5A0, OS:15.0, name:iPhone 12 }
                    { platform:iOS Simulator, id:4713B1DB-1357-4757-918C-CB64C7445F76, OS:15.0, name:iPhone 12 Pro }
                    { platform:iOS Simulator, id:26247B50-915F-4DE7-A8FC-9612B8D4C3B3, OS:15.0, name:iPhone 12 Pro Max }
                    { platform:iOS Simulator, id:609FEEC4-7723-431B-8F76-2A9BB292DEDC, OS:15.0, name:iPhone 12 mini }
                    { platform:iOS Simulator, id:2F98B481-9087-4BC6-BA7D-D654EDEB97A6, OS:15.0, name:iPhone 13 }
                    { platform:iOS Simulator, id:477E0F59-71AF-45BD-B820-E5AA934D77C7, OS:15.0, name:iPhone 13 Pro }
                    { platform:iOS Simulator, id:AF09269C-D1AC-4EA2-BC3C-52857442AE44, OS:15.0, name:iPhone 13 Pro Max }
                    { platform:iOS Simulator, id:3DA3CB7A-8898-48A7-8D03-38CE7F737458, OS:15.0, name:iPhone 13 mini }
                    { platform:iOS Simulator, id:C6810F0C-7E1D-4A1D-A772-94C929773E98, OS:12.2, name:iPhone SE }
                    { platform:iOS Simulator, id:F0C3052C-AE43-474B-B160-7DC6C519766F, OS:15.0, name:iPhone SE (2nd generation) }
                    { platform:iOS Simulator, id:2531FEC4-D1F7-46D3-8F95-B5C890B79434, OS:12.2, name:iPhone X }
                    { platform:iOS Simulator, id:BD92E228-486E-4FFF-87E1-96AE02CBB687, OS:12.2, name:iPhone Xs }
                    { platform:iOS Simulator, id:F877C18C-E081-4965-8FAD-8969DFF6F594, OS:12.2, name:iPhone Xs Max }
                    { platform:iOS Simulator, id:01605396-1968-4EF6-9FA1-E49B2EFB4F42, OS:12.2, name:iPhone Xʀ }
                    { platform:iOS Simulator, id:6EDA4AEE-3838-4ED3-9764-7F667ABE9164, OS:15.0, name:iPod touch (7th generation) }
                    { platform:iOS, id:dvtdevice-DVTiPhonePlaceholder-iphoneos:placeholder, name:Any iOS Device }
                    { platform:iOS, id:59dde6aa47850c4693976b4d096fa6d6015db754, name:Jan-Eric's iPhone }
                    { platform:iOS, id:00008030-001814D81123802E, name:Jan-Eric's iPhone }
[ +124 ms]  └─Compiling, linking and signing... (completed in 5.2s)
[        ] Xcode build done.                                           23.7s
[        ] executing: rsync -av --delete /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/Debug-iphonesimulator/Runner.app /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/iphonesimulator
[+1033 ms] building file list ... done
                    Runner.app/
                    Runner.app/Info.plist
                    Runner.app/PkgInfo
                    Runner.app/Runner
                    Runner.app/Frameworks/
                    Runner.app/Frameworks/App.framework/
                    Runner.app/Frameworks/App.framework/App
                    Runner.app/Frameworks/App.framework/_CodeSignature/CodeResources
                    Runner.app/Frameworks/App.framework/flutter_assets/AssetManifest.json
                    Runner.app/Frameworks/App.framework/flutter_assets/FontManifest.json
                    Runner.app/Frameworks/App.framework/flutter_assets/NOTICES.Z
                    Runner.app/Frameworks/App.framework/flutter_assets/kernel_blob.bin
                    Runner.app/Frameworks/Flutter.framework/
                    Runner.app/Frameworks/Flutter.framework/Flutter
                    Runner.app/Frameworks/Flutter.framework/_CodeSignature/CodeResources
                    Runner.app/_CodeSignature/CodeResources

                    sent 116190637 bytes  received 308 bytes  77460630.00 bytes/sec
                    total size is 145367700  speedup is 1.25
[   +3 ms] executing: xcrun simctl install FC0588FD-0538-47C2-88EB-04AA7D190C9E /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/iphonesimulator/Runner.app
[ +883 ms] executing: /usr/bin/plutil -convert json -o - /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/iphonesimulator/Runner.app/Info.plist
[  +12 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Users/jeduden/dev/git/nestedscrollviewbug/build/ios/iphonesimulator/Runner.app/Info.plist
[        ]
{"CFBundleName":"nestedscrollviewbug","DTXcode":"1300","DTSDKName":"iphonesimulator15.0","UILaunchStoryboardName":"LaunchScreen","CFBundleIcons~ipad":{"CFBundlePrimaryIcon":{"CFBundleIconFiles":["AppIcon20x20
","AppIcon29x29","AppIcon40x40","AppIcon60x60","AppIcon76x76","AppIcon83.5x83.5"],"CFBundleIconName":"AppIcon"}},"DTSDKBuild":"19A339","CFBundleDevelopmentRegion":"en","CFBundleVersion":"1","BuildMachineOSBui
ld":"20F71","DTPlatformName":"iphonesimulator","CFBundlePackageType":"APPL","UIMainStoryboardFile":"Main","CFBundleSupportedPlatforms":["iPhoneSimulator"],"CFBundleShortVersionString":"1.0.0","CFBundleInfoDic
tionaryVersion":"6.0","CFBundleExecutable":"Runner","DTCompiler":"com.apple.compilers.llvm.clang.1_0","UISupportedInterfaceOrientations~ipad":["UIInterfaceOrientationPortrait","UIInterfaceOrientationPortraitU
psideDown","UIInterfaceOrientationLandscapeLeft","UIInterfaceOrientationLandscapeRight"],"MinimumOSVersion":"9.0","CFBundleIdentifier":"com.example.nestedscrollviewbug","UIDeviceFamily":[1,2],"DTPlatformVersi
on":"15.0","CFBundleSignature":"????","CFBundleIcons":{"CFBundlePrimaryIcon":{"CFBundleIconFiles":["AppIcon20x20","AppIcon29x29","AppIcon40x40","AppIcon60x60"],"CFBundleIconName":"AppIcon"}},"DTXcodeBuild":"1
3A233","LSRequiresIPhoneOS":true,"UISupportedInterfaceOrientations":["UIInterfaceOrientationPortrait","UIInterfaceOrientationLandscapeLeft","UIInterfaceOrientationLandscapeRight"],"UIViewControllerBasedStatus
BarAppearance":false,"NSBonjourServices":["_dartobservatory._tcp"],"DTPlatformBuild":"19A339","NSLocalNetworkUsageDescription":"Allow Flutter tools on your computer to connect and debug your application. This
prompt will not appear on release builds."}
[   +5 ms] executing: xcrun simctl launch FC0588FD-0538-47C2-88EB-04AA7D190C9E com.example.nestedscrollviewbug --enable-dart-profiling --enable-checked-mode --verify-entry-points --observatory-port=0
[ +610 ms] com.example.nestedscrollviewbug: 18318
[        ] Waiting for observatory port to be available...
[ +464 ms] Observatory URL on device: http://127.0.0.1:50080/nWu82nRqNfw=/
[   +7 ms] Caching compiled dill
[ +104 ms] Connecting to service protocol: http://127.0.0.1:50080/nWu82nRqNfw=/
[ +222 ms] Launching a Dart Developer Service (DDS) instance at http://127.0.0.1:0, connecting to VM service at http://127.0.0.1:50080/nWu82nRqNfw=/.
[  +76 ms] DDS is listening at http://127.0.0.1:50083/10hJ29c3IgI=/.
[  +71 ms] Successfully connected to service protocol: http://127.0.0.1:50080/nWu82nRqNfw=/
[  +18 ms] DevFS: Creating new filesystem on the device (null)
[  +25 ms] DevFS: Created new filesystem on the device
(file:///Users/jeduden/Library/Developer/CoreSimulator/Devices/FC0588FD-0538-47C2-88EB-04AA7D190C9E/data/Containers/Data/Application/EB460030-229E-429B-87B4-C03C3EE640C8/tmp/nestedscrollviewbugM2mIhB/nestedsc
rollviewbug/)
[   +3 ms] Updating assets
[  +73 ms] Syncing files to device iPhone 8...
[   +2 ms] <- reset
[        ] Compiling dart to kernel with 0 updated files
[   +3 ms] <- recompile package:nestedscrollviewbug/main.dart 22fa7c34-74b7-41dc-adff-b3c3f25f5a40
[        ] <- 22fa7c34-74b7-41dc-adff-b3c3f25f5a40
[  +63 ms] Updating files.
[        ] DevFS: Sync finished
[   +2 ms] Syncing files to device iPhone 8... (completed in 71ms)
[        ] Synced 0.0MB.
[   +1 ms] <- accept
[   +1 ms] Connected to _flutterView/0x7f85a101d820.
[   +2 ms] Flutter run key commands.
[   +1 ms] r Hot reload. 🔥🔥🔥
[        ] R Hot restart.
[        ] h List all available interactive commands.
[        ] d Detach (terminate "flutter run" but leave application running).
[        ] c Clear the screen
[        ] q Quit (terminate the application on the device).
[        ] 💪 Running with sound null safety 💪
[        ] An Observatory debugger and profiler on iPhone 8 is available at: http://127.0.0.1:50083/10hJ29c3IgI=/
[ +307 ms] DevTools activation throttled until 2021-11-18 10:09:14.897870.
[ +516 ms] The Flutter DevTools debugger and profiler on iPhone 8 is available at: http://127.0.0.1:9101?uri=http://127.0.0.1:50083/10hJ29c3IgI=/
Analyzing nestedscrollviewbug...
No issues found! (ran in 1.7s)
[✓] Flutter (Channel stable, 2.5.3, on macOS 11.4 20F71 darwin-x64, locale en-NL)
    • Flutter version 2.5.3 at /usr/local/Caskroom/flutter/1.22.4/flutter
    • Upstream repository https://github.com/flutter/flutter.git
    • Framework revision 18116933e7 (5 weeks ago), 2021-10-15 10:46:35 -0700
    • Engine revision d3ea636dc5
    • Dart version 2.14.4

[✓] Android toolchain - develop for Android devices (Android SDK version 31.0.0)
    • Android SDK at /Users/jeduden/Library/Android/sdk
    • Platform android-31, build-tools 31.0.0
    • ANDROID_HOME = /Users/jeduden/Library/Android/sdk
    • Java binary at: /Applications/Android Studio.app/Contents/jre/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build 11.0.10+0-b96-7281165)
    • All Android licenses accepted.

[✓] Xcode - develop for iOS and macOS
    • Xcode at /Applications/Xcode.app/Contents/Developer
    • Xcode 13.0, Build version 13A233
    • CocoaPods version 1.10.1

[✓] Chrome - develop for the web
    • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome

[✓] Android Studio (version 2020.3)
    • Android Studio at /Applications/Android Studio.app/Contents
    • Flutter plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/9212-flutter
    • Dart plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/6351-dart
    • Java version OpenJDK Runtime Environment (build 11.0.10+0-b96-7281165)

[✓] VS Code (version 1.62.2)
    • VS Code at /Applications/Visual Studio Code.app/Contents
    • Flutter extension version 3.28.0

[✓] Connected device (2 available)
    • iPhone 8 (mobile) • FC0588FD-0538-47C2-88EB-04AA7D190C9E • ios            • com.apple.CoreSimulator.SimRuntime.iOS-15-0 (simulator)
    • Chrome (web)      • chrome                               • web-javascript • Google Chrome 96.0.4664.45

• No issues found!

Metadata

Metadata

Assignees

No one assigned

    Labels

    P2Important issues not at the top of the work listf: scrollingViewports, list views, slivers, etc.found in release: 2.5Found to occur in 2.5found in release: 2.6Found to occur in 2.6frameworkflutter/packages/flutter repository. See also f: labels.has reproducible stepsThe issue has been confirmed reproducible and is ready to work onteam-frameworkOwned by Framework teamtriaged-frameworkTriaged by Framework team

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions