Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

App crashes on latest versions when AnimatedContainer / Container height is set to 0 and throws uncaught exception 'NSInternalInconsistencyException', reason: 'Transformed points can't form a rect' #110671

Open
Altamimi-Dev opened this issue Aug 31, 2022 · 22 comments
Labels
a: accessibility Accessibility, e.g. VoiceOver or TalkBack. (aka a11y) c: fatal crash Crashes that terminate the process c: regression It was better in the past than it is now engine flutter/engine repository. See also e: labels. found in release: 3.3 Found to occur in 3.3 found in release: 3.4 Found to occur in 3.4 has reproducible steps The issue has been confirmed reproducible and is ready to work on P2 Important issues not at the top of the work list platform-ios iOS applications specifically team-ios Owned by iOS platform team triaged-ios Triaged by iOS platform team

Comments

@Altamimi-Dev
Copy link

am getting the issue here with flutter 3.3 stable:

it keeps crashing when the BaseBottomSheet is active if i comment out the hight and width, once in the page if i add static values to the width and hight it works with hot reload. When restarting it , it crashes again.

i also tried:

  • removing the constructors and removing the screen utill.
  • using a container insted of sized box.
  • removing material and adding a container instead.
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';

import '../../../../../constants/const.dart';

class BaseBottomSheet extends StatelessWidget {
  final List<Widget> children;
  final double bottomSheetsHeight;
  const BaseBottomSheet(
      {Key? key,
      required this.children,
      this.bottomSheetsHeight = bottomSheetHeight})
      : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Material(
      color: Colors.white,
      elevation: 5,
      child: SizedBox(
        height: bottomSheetsHeight.h,
        width: bottomSheetWidth(context),
        child: SingleChildScrollView(
          child: Column(
            children: children,
          ),
        ),
      ),
    );
  }
}
@superciccio

This comment was marked as outdated.

@Altamimi-Dev

This comment was marked as outdated.

@darshankawar darshankawar added the in triage Presently being triaged by the triage team label Sep 1, 2022
@darshankawar
Copy link
Member

@Altamimi-Dev
Can you provide flutter doctor -v, platform on which you are running this code and seeing the crash along with a complete minimal reproducible code sample without third party plugins that triggers the crash you are reporting.

am getting the issue here with flutter 3.3 stable:

Did you get same behavior in previous stable ?

@darshankawar darshankawar added the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Sep 1, 2022
@Altamimi-Dev
Copy link
Author

Altamimi-Dev commented Sep 1, 2022

@darshankawar
The same code base with downgrading back to stable 3.0.5 works fine as expected .
when upgrading to 3.3.0 it crashes.

The flutter doctor -v

[✓] Flutter (Channel stable, 3.3.0, on macOS 12.5.1 21G83 darwin-x64, locale en-AE)
    • Flutter version 3.3.0 on channel stable at /Users/Ahmad/Documents/flutter
    • Upstream repository https://github.com/flutter/flutter.git
    • Framework revision ffccd96b62 (2 days ago), 2022-08-29 17:28:57 -0700
    • Engine revision 5e9e0e0aa8
    • Dart version 2.18.0
    • DevTools version 2.15.0

[✓] Android toolchain - develop for Android devices (Android SDK version 30.0.3)
    • Android SDK at /Users/Ahmad/Library/Android/sdk
    • Platform android-33, build-tools 30.0.3
    • Java binary at: /Applications/Android Studio.app/Contents/jre/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build 11.0.12+0-b1504.28-7817840)
    • All Android licenses accepted.

[✓] Xcode - develop for iOS and macOS (Xcode 13.4.1)
    • Xcode at /Applications/Xcode.app/Contents/Developer
    • Build 13F100
    • CocoaPods version 1.11.3

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

[✓] Android Studio (version 2021.2)
    • 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.12+0-b1504.28-7817840)

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

[✓] Connected device (3 available)
    • iPhone 13 Pro (mobile) • CD3BD081-A396-4F98-884C-71ECE6EE90A1 • ios            • com.apple.CoreSimulator.SimRuntime.iOS-15-5 (simulator)
    • macOS (desktop)        • macos                                • darwin-x64     • macOS 12.5.1 21G83 darwin-x64
    • Chrome (web)           • chrome                               • web-javascript • Google Chrome 104.0.5112.101

[✓] HTTP Host Availability
    • All required HTTP hosts are available

• No issues found!
Crash Report iOS simulator
-------------------------------------
Translated Report (Full Report Below)
-------------------------------------

Incident Identifier: C1A090E6-2D7B-4EB9-8790-F6594DA73FA9
CrashReporter Key:   40CBCFE0-BE45-69D8-5735-F24AE8BC0ACF
Hardware Model:      MacBookPro11,3
Process:             Runner [20625]
Path:                /Users/USER/Library/Developer/CoreSimulator/Devices/CD3BD081-A396-4F98-884C-71ECE6EE90A1/data/Containers/Bundle/Application/0E308DD0-4375-4B87-8BD2-ACF790570DBF/Runner.app/Runner
Identifier:          com.sitt.mobile
Version:             1.0.10 (16)
Code Type:           X86-64 (Native)
Role:                Foreground
Parent Process:      launchd_sim [14885]
Coalition:           com.apple.CoreSimulator.SimDevice.CD3BD081-A396-4F98-884C-71ECE6EE90A1 [1765]
Responsible Process: SimulatorTrampoline [2015]

Date/Time:           2022-09-01 10:49:28.6021 +0400
Launch Time:         2022-09-01 10:39:28.2984 +0400
OS Version:          macOS 12.5.1 (21G83)
Release Type:        User
Report Version:      104

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note:  EXC_CORPSE_NOTIFY
Triggered by Thread:  0

Last Exception Backtrace:
0   CoreFoundation                	    0x7fff204055f4 __exceptionPreprocess + 226
1   libobjc.A.dylib               	    0x7fff201a4a45 objc_exception_throw + 48
2   Foundation                    	    0x7fff2075ea19 -[NSMutableDictionary(NSMutableDictionary) classForCoder] + 0
3   Flutter                       	       0x1073fc18c (anonymous namespace)::ConvertRectToGlobal(SemanticsObject*, CGRect) + 677
4   Flutter                       	       0x1073fe8b0 -[SemanticsObject globalRect] + 142
5   Flutter                       	       0x1073fe7ec -[SemanticsObject accessibilityFrame] + 189
6   Flutter                       	       0x1073fba81 -[FlutterScrollableSemanticsObject accessibilityBridgeDidFinishUpdate] + 51
7   Flutter                       	       0x107401b52 flutter::AccessibilityBridge::UpdateSemantics(std::__1::unordered_map<int, flutter::SemanticsNode, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, flutter::SemanticsNode> > >, std::__1::unordered_map<int, flutter::CustomAccessibilityAction, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, flutter::CustomAccessibilityAction> > >) + 2980
8   Flutter                       	       0x10740c66e flutter::PlatformViewIOS::UpdateSemantics(std::__1::unordered_map<int, flutter::SemanticsNode, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, flutter::SemanticsNode> > >, std::__1::unordered_map<int, flutter::CustomAccessibilityAction, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, flutter::CustomAccessibilityAction> > >) + 80
9   Flutter                       	       0x107836950 std::__1::__function::__func<flutter::Shell::OnEngineUpdateSemantics(std::__1::unordered_map<int, flutter::SemanticsNode, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, flutter::SemanticsNode> > >, std::__1::unordered_map<int, flutter::CustomAccessibilityAction, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, flutter::CustomAccessibilityAction> > >)::$_39, std::__1::allocator<flutter::Shell::OnEngineUpdateSemantics(std::__1::unordered_map<int, flutter::SemanticsNode, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, flutter::SemanticsNode> > >, std::__1::unordered_map<int, flutter::CustomAccessibilityAction, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, flutter::CustomAccessibilityAction> > >)::$_39>, void ()>::operator()() + 108
10  Flutter                       	       0x107730615 fml::MessageLoopImpl::FlushTasks(fml::FlushType) + 163
11  Flutter                       	       0x1077365dc fml::MessageLoopDarwin::OnTimerFire(__CFRunLoopTimer*, fml::MessageLoopDarwin*) + 26
12  CoreFoundation                	    0x7fff20372d6e __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
13  CoreFoundation                	    0x7fff2037283c __CFRunLoopDoTimer + 915
14  CoreFoundation                	    0x7fff20371dfd __CFRunLoopDoTimers + 265
15  CoreFoundation                	    0x7fff2036c3e1 __CFRunLoopRun + 2016
16  CoreFoundation                	    0x7fff2036b704 CFRunLoopRunSpecific + 562
17  GraphicsServices              	    0x7fff2cba9c8e GSEventRunModal + 139
18  UIKitCore                     	    0x7fff2509e65a -[UIApplication _run] + 928
19  UIKitCore                     	    0x7fff250a32b5 UIApplicationMain + 101
20  Runner                        	       0x10135123f main + 63 (AppDelegate.swift:5)
21  dyld_sim                      	       0x102770f21 start_sim + 10
22  dyld                          	       0x109c3652e start + 462

Thread 0 Crashed::  Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib        	    0x7fff7017300e __pthread_kill + 10
1   libsystem_pthread.dylib       	    0x7fff701cb1ff pthread_kill + 263
2   libsystem_c.dylib             	    0x7fff2010b6b7 abort + 130
3   libc++abi.dylib               	    0x7fff2025a5a2 abort_message + 241
4   libc++abi.dylib               	    0x7fff2024b73d demangling_terminate_handler() + 266
5   libobjc.A.dylib               	    0x7fff20189d74 _objc_terminate() + 96
6   Sentry                        	       0x103377435 CPPExceptionTerminate() + 126 (SentryCrashMonitor_CPPException.cpp:171)
7   libc++abi.dylib               	    0x7fff202599c7 std::__terminate(void (*)()) + 8
8   libc++abi.dylib               	    0x7fff2025c204 __cxa_rethrow + 99
9   libobjc.A.dylib               	    0x7fff201a4baf objc_exception_rethrow + 37
10  CoreFoundation                	    0x7fff2036b825 CFRunLoopRunSpecific + 851
11  GraphicsServices              	    0x7fff2cba9c8e GSEventRunModal + 139
12  UIKitCore                     	    0x7fff2509e65a -[UIApplication _run] + 928
13  UIKitCore                     	    0x7fff250a32b5 UIApplicationMain + 101
14  Runner                        	       0x10135123f main + 63 (AppDelegate.swift:5)
15  dyld_sim                      	       0x102770f21 start_sim + 10
16  dyld                          	       0x109c3652e start + 462

Thread 1:: com.apple.uikit.eventfetch-thread
0   libsystem_kernel.dylib        	    0x7fff7016c97a mach_msg_trap + 10
1   libsystem_kernel.dylib        	    0x7fff7016cce8 mach_msg + 56
2   CoreFoundation                	    0x7fff20371acc __CFRunLoopServiceMachPort + 319
3   CoreFoundation                	    0x7fff2036c0e2 __CFRunLoopRun + 1249
4   CoreFoundation                	    0x7fff2036b704 CFRunLoopRunSpecific + 562
5   Foundation                    	    0x7fff20828049 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
6   Foundation                    	    0x7fff208282c2 -[NSRunLoop(NSRunLoop) runUntilDate:] + 72
7   UIKitCore                     	    0x7fff25161bda -[UIEventFetcher threadMain] + 491
8   Foundation                    	    0x7fff208511a1 __NSThread__start__ + 1009
9   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
10  libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15

Thread 2:: io.flutter.1.ui
0   libsystem_kernel.dylib        	    0x7fff7016c97a mach_msg_trap + 10
1   libsystem_kernel.dylib        	    0x7fff7016cce8 mach_msg + 56
2   CoreFoundation                	    0x7fff20371acc __CFRunLoopServiceMachPort + 319
3   CoreFoundation                	    0x7fff2036c0e2 __CFRunLoopRun + 1249
4   CoreFoundation                	    0x7fff2036b704 CFRunLoopRunSpecific + 562
5   Flutter                       	       0x107736719 fml::MessageLoopDarwin::Run() + 65
6   Flutter                       	       0x107730526 fml::MessageLoopImpl::DoRun() + 22
7   Flutter                       	       0x107735617 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::Thread::Thread(std::__1::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0> >(void*) + 169
8   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
9   libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15

Thread 3:: io.flutter.1.raster
0   libsystem_kernel.dylib        	    0x7fff7016c97a mach_msg_trap + 10
1   libsystem_kernel.dylib        	    0x7fff7016cce8 mach_msg + 56
2   CoreFoundation                	    0x7fff20371acc __CFRunLoopServiceMachPort + 319
3   CoreFoundation                	    0x7fff2036c0e2 __CFRunLoopRun + 1249
4   CoreFoundation                	    0x7fff2036b704 CFRunLoopRunSpecific + 562
5   Flutter                       	       0x107736719 fml::MessageLoopDarwin::Run() + 65
6   Flutter                       	       0x107730526 fml::MessageLoopImpl::DoRun() + 22
7   Flutter                       	       0x107735617 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::Thread::Thread(std::__1::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0> >(void*) + 169
8   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
9   libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15

Thread 4:: io.flutter.1.io
0   libsystem_kernel.dylib        	    0x7fff7016c97a mach_msg_trap + 10
1   libsystem_kernel.dylib        	    0x7fff7016cce8 mach_msg + 56
2   CoreFoundation                	    0x7fff20371acc __CFRunLoopServiceMachPort + 319
3   CoreFoundation                	    0x7fff2036c0e2 __CFRunLoopRun + 1249
4   CoreFoundation                	    0x7fff2036b704 CFRunLoopRunSpecific + 562
5   Flutter                       	       0x107736719 fml::MessageLoopDarwin::Run() + 65
6   Flutter                       	       0x107730526 fml::MessageLoopImpl::DoRun() + 22
7   Flutter                       	       0x107735617 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::Thread::Thread(std::__1::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0> >(void*) + 169
8   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
9   libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15

Thread 5:: io.flutter.1.profiler
0   libsystem_kernel.dylib        	    0x7fff7016c97a mach_msg_trap + 10
1   libsystem_kernel.dylib        	    0x7fff7016cce8 mach_msg + 56
2   CoreFoundation                	    0x7fff20371acc __CFRunLoopServiceMachPort + 319
3   CoreFoundation                	    0x7fff2036c0e2 __CFRunLoopRun + 1249
4   CoreFoundation                	    0x7fff2036b704 CFRunLoopRunSpecific + 562
5   Flutter                       	       0x107736719 fml::MessageLoopDarwin::Run() + 65
6   Flutter                       	       0x107730526 fml::MessageLoopImpl::DoRun() + 22
7   Flutter                       	       0x107735617 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::Thread::Thread(std::__1::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0> >(void*) + 169
8   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
9   libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15

Thread 6:: io.worker.1
0   libsystem_kernel.dylib        	    0x7fff7016f3ea __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff701cba6f _pthread_cond_wait + 1249
2   libc++.1.dylib                	    0x7fff2027d632 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 18
3   Flutter                       	       0x10772d629 fml::ConcurrentMessageLoop::WorkerMain() + 187
4   Flutter                       	       0x10772dde5 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*) + 190
5   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
6   libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15

Thread 7:: io.worker.2
0   libsystem_kernel.dylib        	    0x7fff7016f3ea __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff701cba6f _pthread_cond_wait + 1249
2   libc++.1.dylib                	    0x7fff2027d632 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 18
3   Flutter                       	       0x10772d629 fml::ConcurrentMessageLoop::WorkerMain() + 187
4   Flutter                       	       0x10772dde5 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*) + 190
5   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
6   libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15

Thread 8:: io.worker.3
0   libsystem_kernel.dylib        	    0x7fff7016f3ea __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff701cba6f _pthread_cond_wait + 1249
2   libc++.1.dylib                	    0x7fff2027d632 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 18
3   Flutter                       	       0x10772d629 fml::ConcurrentMessageLoop::WorkerMain() + 187
4   Flutter                       	       0x10772dde5 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*) + 190
5   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
6   libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15

Thread 9:: io.worker.4
0   libsystem_kernel.dylib        	    0x7fff7016f3ea __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff701cba6f _pthread_cond_wait + 1249
2   libc++.1.dylib                	    0x7fff2027d632 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 18
3   Flutter                       	       0x10772d629 fml::ConcurrentMessageLoop::WorkerMain() + 187
4   Flutter                       	       0x10772dde5 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*) + 190
5   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
6   libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15

Thread 10:: io.worker.5
0   libsystem_kernel.dylib        	    0x7fff7016f3ea __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff701cba6f _pthread_cond_wait + 1249
2   libc++.1.dylib                	    0x7fff2027d632 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 18
3   Flutter                       	       0x10772d629 fml::ConcurrentMessageLoop::WorkerMain() + 187
4   Flutter                       	       0x10772dde5 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*) + 190
5   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
6   libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15

Thread 11:: io.worker.6
0   libsystem_kernel.dylib        	    0x7fff7016f3ea __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff701cba6f _pthread_cond_wait + 1249
2   libc++.1.dylib                	    0x7fff2027d632 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 18
3   Flutter                       	       0x10772d629 fml::ConcurrentMessageLoop::WorkerMain() + 187
4   Flutter                       	       0x10772dde5 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*) + 190
5   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
6   libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15

Thread 12:: io.worker.7
0   libsystem_kernel.dylib        	    0x7fff7016f3ea __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff701cba6f _pthread_cond_wait + 1249
2   libc++.1.dylib                	    0x7fff2027d632 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 18
3   Flutter                       	       0x10772d629 fml::ConcurrentMessageLoop::WorkerMain() + 187
4   Flutter                       	       0x10772dde5 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*) + 190
5   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
6   libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15

Thread 13:: io.worker.8
0   libsystem_kernel.dylib        	    0x7fff7016f3ea __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff701cba6f _pthread_cond_wait + 1249
2   libc++.1.dylib                	    0x7fff2027d632 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 18
3   Flutter                       	       0x10772d629 fml::ConcurrentMessageLoop::WorkerMain() + 187
4   Flutter                       	       0x10772dde5 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*) + 190
5   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
6   libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15

Thread 14:: dart:io EventHandler
0   libsystem_kernel.dylib        	    0x7fff7017134e kevent + 10
1   Flutter                       	       0x10793d148 dart::bin::EventHandlerImplementation::EventHandlerEntry(unsigned long) + 344
2   Flutter                       	       0x10795bf08 dart::bin::ThreadStart(void*) + 40
3   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
4   libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15

Thread 15:: Dart Profiler ThreadInterrupter
0   libsystem_kernel.dylib        	    0x7fff7016f3ea __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff701cba6f _pthread_cond_wait + 1249
2   Flutter                       	       0x107b006ce dart::Monitor::WaitMicros(long long) + 158
3   Flutter                       	       0x107b8403f dart::ThreadInterrupter::ThreadMain(unsigned long) + 303
4   Flutter                       	       0x107affcaf dart::ThreadStart(void*) + 159
5   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
6   libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15

Thread 16:: Dart Profiler SampleBlockProcessor
0   libsystem_kernel.dylib        	    0x7fff7016f3ea __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff701cbaa4 _pthread_cond_wait + 1302
2   Flutter                       	       0x107b006b6 dart::Monitor::WaitMicros(long long) + 134
3   Flutter                       	       0x107b05e25 dart::SampleBlockProcessor::ThreadMain(unsigned long) + 181
4   Flutter                       	       0x107affcaf dart::ThreadStart(void*) + 159
5   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
6   libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15

Thread 17:: com.apple.NSURLConnectionLoader
0   libsystem_kernel.dylib        	    0x7fff7016c97a mach_msg_trap + 10
1   libsystem_kernel.dylib        	    0x7fff7016cce8 mach_msg + 56
2   CoreFoundation                	    0x7fff20371acc __CFRunLoopServiceMachPort + 319
3   CoreFoundation                	    0x7fff2036c0e2 __CFRunLoopRun + 1249
4   CoreFoundation                	    0x7fff2036b704 CFRunLoopRunSpecific + 562
5   CFNetwork                     	    0x7fff240753e0 0x7fff23e41000 + 2311136
6   Foundation                    	    0x7fff208511a1 __NSThread__start__ + 1009
7   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
8   libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15

Thread 18:
0   libsystem_kernel.dylib        	    0x7fff7016f2be __semwait_signal + 10
1   libsystem_c.dylib             	    0x7fff201084a4 nanosleep + 206
2   libsystem_c.dylib             	    0x7fff20108303 sleep + 48
3   Sentry                        	       0x10336b0eb monitorCachedData + 650 (SentryCrashCachedData.c:144)
4   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
5   libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15

Thread 19:: SentryCrash Exception Handler (Secondary)
0   libsystem_kernel.dylib        	    0x7fff7016c97a mach_msg_trap + 10
1   libsystem_kernel.dylib        	    0x7fff7016cce8 mach_msg + 56
2   libsystem_kernel.dylib        	    0x7fff7018d1c8 thread_suspend + 80
3   Sentry                        	       0x103377b07 handleExceptions + 134 (SentryCrashMonitor_MachException.c:258)
4   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
5   libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15

Thread 20:: SentryCrash Exception Handler (Primary)
0   libsystem_kernel.dylib        	    0x7fff7016c97a mach_msg_trap + 10
1   libsystem_kernel.dylib        	    0x7fff7016cda5 mach_msg + 245
2   Sentry                        	       0x103377b3d handleExceptions + 188 (SentryCrashMonitor_MachException.c:266)
3   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
4   libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15

Thread 21:: io.sentry.app-hang-tracker
0   libsystem_kernel.dylib        	    0x7fff7016f2be __semwait_signal + 10
1   libsystem_c.dylib             	    0x7fff201084a4 nanosleep + 206
2   Foundation                    	    0x7fff2084fb4a +[NSThread sleepForTimeInterval:] + 163
3   Sentry                        	       0x10335c36f -[SentryANRTracker detectANRs] + 701 (SentryANRTracker.m:63)
4   Foundation                    	    0x7fff208511a1 __NSThread__start__ + 1009
5   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
6   libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15

Thread 22:: com.google.Maps.LabelingBehavior
0   libsystem_kernel.dylib        	    0x7fff7016c97a mach_msg_trap + 10
1   libsystem_kernel.dylib        	    0x7fff7016cce8 mach_msg + 56
2   CoreFoundation                	    0x7fff20371acc __CFRunLoopServiceMachPort + 319
3   CoreFoundation                	    0x7fff2036c0e2 __CFRunLoopRun + 1249
4   CoreFoundation                	    0x7fff2036b704 CFRunLoopRunSpecific + 562
5   Foundation                    	    0x7fff20828049 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
6   Runner                        	       0x101778e3e -[GMSx_GTMSimpleWorkerThread main] + 151
7   Foundation                    	    0x7fff208511a1 __NSThread__start__ + 1009
8   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
9   libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15

Thread 23:
0   libsystem_pthread.dylib       	    0x7fff701c6f48 start_wqthread + 0

Thread 24:: DartWorker
0   libsystem_kernel.dylib        	    0x7fff7016f3ea __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff701cbaa4 _pthread_cond_wait + 1302
2   Flutter                       	       0x107b006b6 dart::Monitor::WaitMicros(long long) + 134
3   Flutter                       	       0x107a3b41f dart::MutatorThreadPool::OnEnterIdleLocked(dart::MonitorLocker*) + 207
4   Flutter                       	       0x107b84bcd dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 109
5   Flutter                       	       0x107b84f89 dart::ThreadPool::Worker::Main(unsigned long) + 121
6   Flutter                       	       0x107affcaf dart::ThreadStart(void*) + 159
7   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
8   libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15

Thread 25:: DartWorker
0   libsystem_kernel.dylib        	    0x7fff7016f3ea __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff701cbaa4 _pthread_cond_wait + 1302
2   Flutter                       	       0x107b006b6 dart::Monitor::WaitMicros(long long) + 134
3   Flutter                       	       0x107b84d9f dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 575
4   Flutter                       	       0x107b84f89 dart::ThreadPool::Worker::Main(unsigned long) + 121
5   Flutter                       	       0x107affcaf dart::ThreadStart(void*) + 159
6   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
7   libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15

Thread 26:: DartWorker
0   libsystem_kernel.dylib        	    0x7fff7016f3ea __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff701cbaa4 _pthread_cond_wait + 1302
2   Flutter                       	       0x107b006b6 dart::Monitor::WaitMicros(long long) + 134
3   Flutter                       	       0x107b84d9f dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 575
4   Flutter                       	       0x107b84f89 dart::ThreadPool::Worker::Main(unsigned long) + 121
5   Flutter                       	       0x107affcaf dart::ThreadStart(void*) + 159
6   libsystem_pthread.dylib       	    0x7fff701cb4e1 _pthread_start + 125
7   libsystem_pthread.dylib       	    0x7fff701c6f6b thread_start + 15


Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x0000000109cb1600  rcx: 0x00007ff7bebb26a8  rdx: 0x0000000000000000
  rdi: 0x0000000000000103  rsi: 0x0000000000000006  rbp: 0x00007ff7bebb26d0  rsp: 0x00007ff7bebb26a8
   r8: 0x00007ff7bebb2570   r9: 0x00007ff7bebb27d0  r10: 0x0000000000000000  r11: 0x0000000000000246
  r12: 0x0000000000000103  r13: 0x0000003000000008  r14: 0x0000000000000006  r15: 0x0000000000000016
  rip: 0x00007fff7017300e  rfl: 0x0000000000000246  cr2: 0x00007fff200f9000
  
Logical CPU:     0
Error Code:      0x02000148 
Trap Number:     133

@github-actions github-actions bot removed the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Sep 1, 2022
@darshankawar
Copy link
Member

along with a complete minimal reproducible code sample without third party plugins that triggers the crash you are reporting.

We would need this to be able to analyze properly.

@darshankawar darshankawar added the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Sep 1, 2022
@Altamimi-Dev
Copy link
Author

Altamimi-Dev commented Sep 1, 2022

@darshankawar

This is a minimal code with the same result of crashing:
during writing this with the hight of the AnimatedContainer or a Sized box is 0 it crashes with a value of 1 it dose not crash.

The use case that we are using it is with a state to start with 0 if an item in a list is not selected once the item in the list is selected it changes the hight to show the BaseBottomSheet as it was working fine with 3.0.5 but once upgraded to 3.3.0 if the value of the hight is set to 0 it crashes on build.

import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key, required this.title});

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  int _counter = 0;

  void _incrementCounter() {
    setState(() {
      _counter++;
    });
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            const Text(
              'You have pushed the button this many times:',
            ),
            Text(
              '$_counter',
              style: Theme.of(context).textTheme.headline4,
            ),
            AnimatedContainer(
              height: 0,
              width: MediaQuery.of(context).size.width,
              duration: const Duration(milliseconds: 250),
              child: const FittedBox(
                child: BaseBottomSheet(),
              ),
            )
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: const Icon(Icons.add),
      ),
    );
  }
}

class BaseBottomSheet extends StatelessWidget {
  const BaseBottomSheet({
    Key? key,
  }) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Material(
      color: Colors.white,
      elevation: 5,
      child: SizedBox(
        height: 55,
        width: 266,
        child: SingleChildScrollView(
          child: Column(
              ),
        ),
      ),
    );
  }
}

@github-actions github-actions bot removed the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Sep 1, 2022
@Altamimi-Dev Altamimi-Dev changed the title [Flutter 3.3] Fatal crash no error on logs [Flutter 3.3] Fatal crash when widget hight: 0 Sep 1, 2022
@darshankawar
Copy link
Member

Thanks for the code sample. Using it on latest master (3.4) and stable (3.3.0), I noticed app crash and throws below log:

crash log

-------------------------------------
Translated Report (Full Report Below)
-------------------------------------

Incident Identifier: 0EEDC4AA-64B3-4E5D-B11F-69ECBFD3C1FC
CrashReporter Key:   61D12090-CD56-B877-7B8C-9C3A0B4CF7D4
Hardware Model:      MacBookPro16,2
Process:             Runner [5060]
Path:                /Users/USER/Library/Developer/CoreSimulator/Devices/3BD8F2FF-FDB5-4074-8C91-54F99C79156D/data/Containers/Bundle/Application/E29E6E06-2CA3-40F8-86B9-E1EF7488EBE7/Runner.app/Runner
Identifier:          com.example.testApp
Version:             1.0.0 (1)
Code Type:           X86-64 (Native)
Role:                Foreground
Parent Process:      launchd_sim [2175]
Coalition:           com.apple.CoreSimulator.SimDevice.3BD8F2FF-FDB5-4074-8C91-54F99C79156D [1264]
Responsible Process: SimulatorTrampoline [813]

Date/Time:           2022-09-02 10:46:52.4726 +0530
Launch Time:         2022-09-02 10:46:48.5870 +0530
OS Version:          macOS 12.2.1 (21D62)
Release Type:        User
Report Version:      104

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note:  EXC_CORPSE_NOTIFY
Triggered by Thread:  0

Application Specific Information:
dyld4 config: DYLD_ROOT_PATH=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot
CoreSimulator 783.5 - Device: iPhone 13 (3BD8F2FF-FDB5-4074-8C91-54F99C79156D) - Runtime: iOS 15.2 (19C51) - DeviceType: iPhone 13
abort() called
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Transformed points can't form a rect'
dyld4 config: DYLD_ROOT_PATH=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot
terminating with uncaught exception of type NSException


Last Exception Backtrace:
0   CoreFoundation                	    0x7fff203feb94 __exceptionPreprocess + 226
1   libobjc.A.dylib               	    0x7fff201a1be7 objc_exception_throw + 48
2   Foundation                    	    0x7fff20753c39 -[NSMutableDictionary(NSMutableDictionary) classForCoder] + 0
3   Flutter                       	       0x10fb742fc (anonymous namespace)::ConvertRectToGlobal(SemanticsObject*, CGRect) + 677
4   Flutter                       	       0x10fb76a38 -[SemanticsObject globalRect] + 142
5   Flutter                       	       0x10fb76974 -[SemanticsObject accessibilityFrame] + 189
6   Flutter                       	       0x10fb73bf1 -[FlutterScrollableSemanticsObject accessibilityBridgeDidFinishUpdate] + 51
7   Flutter                       	       0x10fb79cd2 flutter::AccessibilityBridge::UpdateSemantics(std::__1::unordered_map<int, flutter::SemanticsNode, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, flutter::SemanticsNode> > >, std::__1::unordered_map<int, flutter::CustomAccessibilityAction, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, flutter::CustomAccessibilityAction> > >) + 2980
8   Flutter                       	       0x10fb82a6c flutter::PlatformViewIOS::UpdateSemantics(std::__1::unordered_map<int, flutter::SemanticsNode, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, flutter::SemanticsNode> > >, std::__1::unordered_map<int, flutter::CustomAccessibilityAction, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, flutter::CustomAccessibilityAction> > >) + 80
9   Flutter                       	       0x10ff743b2 std::__1::__function::__func<flutter::Shell::OnEngineUpdateSemantics(std::__1::unordered_map<int, flutter::SemanticsNode, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, flutter::SemanticsNode> > >, std::__1::unordered_map<int, flutter::CustomAccessibilityAction, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, flutter::CustomAccessibilityAction> > >)::$_40, std::__1::allocator<flutter::Shell::OnEngineUpdateSemantics(std::__1::unordered_map<int, flutter::SemanticsNode, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, flutter::SemanticsNode> > >, std::__1::unordered_map<int, flutter::CustomAccessibilityAction, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, flutter::CustomAccessibilityAction> > >)::$_40>, void ()>::operator()() + 108
10  Flutter                       	       0x10fe6d375 fml::MessageLoopImpl::FlushTasks(fml::FlushType) + 163
11  Flutter                       	       0x10fe73132 fml::MessageLoopDarwin::OnTimerFire(__CFRunLoopTimer*, fml::MessageLoopDarwin*) + 26
12  CoreFoundation                	    0x7fff2036d6b6 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
13  CoreFoundation                	    0x7fff2036d1b2 __CFRunLoopDoTimer + 923
14  CoreFoundation                	    0x7fff2036c771 __CFRunLoopDoTimers + 265
15  CoreFoundation                	    0x7fff20366db0 __CFRunLoopRun + 2010
16  CoreFoundation                	    0x7fff203660f3 CFRunLoopRunSpecific + 567
17  GraphicsServices              	    0x7fff2c995cd3 GSEventRunModal + 139
18  UIKitCore                     	    0x7fff25059f42 -[UIApplication _run] + 928
19  UIKitCore                     	    0x7fff2505eb5e UIApplicationMain + 101
20  Runner                        	       0x10cabd6df main + 63 (AppDelegate.swift:5)
21  dyld_sim                      	       0x10cd25ee9 start_sim + 10
22  dyld                          	       0x11c95b4fe start + 462

Thread 0 Crashed::  Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib        	    0x7fff6d9db112 __pthread_kill + 10
1   libsystem_pthread.dylib       	    0x7fff6da32214 pthread_kill + 263
2   libsystem_c.dylib             	    0x7fff20108684 abort + 123
3   libc++abi.dylib               	    0x7fff202565c2 abort_message + 241
4   libc++abi.dylib               	    0x7fff2024776d demangling_terminate_handler() + 266
5   libobjc.A.dylib               	    0x7fff20187c1b _objc_terminate() + 96
6   libc++abi.dylib               	    0x7fff202559e7 std::__terminate(void (*)()) + 8
7   libc++abi.dylib               	    0x7fff20258254 __cxa_rethrow + 99
8   libobjc.A.dylib               	    0x7fff201a1d46 objc_exception_rethrow + 37
9   CoreFoundation                	    0x7fff20366219 CFRunLoopRunSpecific + 861
10  GraphicsServices              	    0x7fff2c995cd3 GSEventRunModal + 139
11  UIKitCore                     	    0x7fff25059f42 -[UIApplication _run] + 928
12  UIKitCore                     	    0x7fff2505eb5e UIApplicationMain + 101
13  Runner                        	       0x10cabd6df main + 63 (AppDelegate.swift:5)
14  dyld_sim                      	       0x10cd25ee9 start_sim + 10
15  dyld                          	       0x11c95b4fe start + 462

Thread 1:
0   libsystem_pthread.dylib       	    0x7fff6da2dfec start_wqthread + 0

Thread 2:
0   libsystem_pthread.dylib       	    0x7fff6da2dfec start_wqthread + 0

Thread 3:
0   libsystem_pthread.dylib       	    0x7fff6da2dfec start_wqthread + 0

Thread 4:: com.apple.uikit.eventfetch-thread
0   libsystem_kernel.dylib        	    0x7fff6d9d4aba mach_msg_trap + 10
1   libsystem_kernel.dylib        	    0x7fff6d9d4e2b mach_msg + 59
2   CoreFoundation                	    0x7fff2036c440 __CFRunLoopServiceMachPort + 319
3   CoreFoundation                	    0x7fff20366ae3 __CFRunLoopRun + 1293
4   CoreFoundation                	    0x7fff203660f3 CFRunLoopRunSpecific + 567
5   Foundation                    	    0x7fff2081c754 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
6   Foundation                    	    0x7fff2081c9cb -[NSRunLoop(NSRunLoop) runUntilDate:] + 72
7   UIKitCore                     	    0x7fff2511a2d1 -[UIEventFetcher threadMain] + 491
8   Foundation                    	    0x7fff20845550 __NSThread__start__ + 1025
9   libsystem_pthread.dylib       	    0x7fff6da324f4 _pthread_start + 125
10  libsystem_pthread.dylib       	    0x7fff6da2e00f thread_start + 15

Thread 5:
0   libsystem_pthread.dylib       	    0x7fff6da2dfec start_wqthread + 0

Thread 6:
0   libsystem_pthread.dylib       	    0x7fff6da2dfec start_wqthread + 0

Thread 7:
0   libsystem_pthread.dylib       	    0x7fff6da2dfec start_wqthread + 0

Thread 8:
0   libsystem_pthread.dylib       	    0x7fff6da2dfec start_wqthread + 0

Thread 9:: io.flutter.1.ui
0   libsystem_kernel.dylib        	    0x7fff6d9d4aba mach_msg_trap + 10
1   libsystem_kernel.dylib        	    0x7fff6d9d4e2b mach_msg + 59
2   CoreFoundation                	    0x7fff2036c440 __CFRunLoopServiceMachPort + 319
3   CoreFoundation                	    0x7fff20366ae3 __CFRunLoopRun + 1293
4   CoreFoundation                	    0x7fff203660f3 CFRunLoopRunSpecific + 567
5   Flutter                       	       0x10fe7326f fml::MessageLoopDarwin::Run() + 65
6   Flutter                       	       0x10fe6d286 fml::MessageLoopImpl::DoRun() + 22
7   Flutter                       	       0x10fe7216d void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::Thread::Thread(std::__1::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0> >(void*) + 169
8   libsystem_pthread.dylib       	    0x7fff6da324f4 _pthread_start + 125
9   libsystem_pthread.dylib       	    0x7fff6da2e00f thread_start + 15

Thread 10:: io.flutter.1.raster
0   libsystem_kernel.dylib        	    0x7fff6d9d7506 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff6da32a69 _pthread_cond_wait + 1224
2   Metal                         	    0x7fff38016ae2 -[_MTLCommandBuffer waitUntilScheduled] + 67
3   Flutter                       	       0x10fda885d GrMtlCommandBuffer::commit(bool) + 153
4   Flutter                       	       0x10fda9deb GrMtlGpu::submitCommandBuffer(GrMtlGpu::SyncQueue) + 51
5   Flutter                       	       0x10fd07dbf GrGpu::submitToGpu(bool) + 73
6   Flutter                       	       0x10fb97311 SkCanvas::onFlush() + 73
7   Flutter                       	       0x110137ecd std::__1::__function::__func<flutter::GPUSurfaceMetalSkia::AcquireFrameFromCAMetalLayer(SkISize const&)::$_1, std::__1::allocator<flutter::GPUSurfaceMetalSkia::AcquireFrameFromCAMetalLayer(SkISize const&)::$_1>, bool (flutter::SurfaceFrame&, SkCanvas*)>::operator()(flutter::SurfaceFrame&, SkCanvas*&&) + 85
8   Flutter                       	       0x1100321c6 flutter::SurfaceFrame::Submit() + 50
9   Flutter                       	       0x10ff5fc0c flutter::Rasterizer::DrawToSurfaceUnsafe(flutter::FrameTimingsRecorder&, flutter::LayerTree&) + 1140
10  Flutter                       	       0x10ff618ae std::__1::__function::__func<flutter::Rasterizer::DrawToSurface(flutter::FrameTimingsRecorder&, flutter::LayerTree&)::$_6, std::__1::allocator<flutter::Rasterizer::DrawToSurface(flutter::FrameTimingsRecorder&, flutter::LayerTree&)::$_6>, void ()>::operator()() + 26
11  Flutter                       	       0x10fe7005f fml::SyncSwitch::Execute(fml::SyncSwitch::Handlers const&) const + 55
12  Flutter                       	       0x10ff5e2d8 flutter::Rasterizer::DrawToSurface(flutter::FrameTimingsRecorder&, flutter::LayerTree&) + 356
13  Flutter                       	       0x10ff5f154 flutter::Rasterizer::DoDraw(std::__1::unique_ptr<flutter::FrameTimingsRecorder, std::__1::default_delete<flutter::FrameTimingsRecorder> >, std::__1::shared_ptr<flutter::LayerTree>) + 120
14  Flutter                       	       0x10ff60597 std::__1::__function::__func<flutter::Rasterizer::Draw(std::__1::shared_ptr<flutter::Pipeline<flutter::LayerTreeItem> >, std::__1::function<bool (flutter::LayerTree&)>)::$_2, std::__1::allocator<flutter::Rasterizer::Draw(std::__1::shared_ptr<flutter::Pipeline<flutter::LayerTreeItem> >, std::__1::function<bool (flutter::LayerTree&)>)::$_2>, void (std::__1::unique_ptr<flutter::LayerTreeItem, std::__1::default_delete<flutter::LayerTreeItem> >)>::operator()(std::__1::unique_ptr<flutter::LayerTreeItem, std::__1::default_delete<flutter::LayerTreeItem> >&&) + 193
15  Flutter                       	       0x10ff5ec15 flutter::Pipeline<flutter::LayerTreeItem>::Consume(std::__1::function<void (std::__1::unique_ptr<flutter::LayerTreeItem, std::__1::default_delete<flutter::LayerTreeItem> >)> const&) + 199
16  Flutter                       	       0x10ff5e485 flutter::Rasterizer::Draw(std::__1::shared_ptr<flutter::Pipeline<flutter::LayerTreeItem> >, std::__1::function<bool (flutter::LayerTree&)>) + 155
17  Flutter                       	       0x10ff73e75 std::__1::__function::__func<fml::internal::CopyableLambda<flutter::Shell::OnAnimatorDraw(std::__1::shared_ptr<flutter::Pipeline<flutter::LayerTreeItem> >)::$_12>, std::__1::allocator<fml::internal::CopyableLambda<flutter::Shell::OnAnimatorDraw(std::__1::shared_ptr<flutter::Pipeline<flutter::LayerTreeItem> >)::$_12> >, void ()>::operator()() + 169
18  Flutter                       	       0x10fe6d375 fml::MessageLoopImpl::FlushTasks(fml::FlushType) + 163
19  Flutter                       	       0x10fe73132 fml::MessageLoopDarwin::OnTimerFire(__CFRunLoopTimer*, fml::MessageLoopDarwin*) + 26
20  CoreFoundation                	    0x7fff2036d6b6 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
21  CoreFoundation                	    0x7fff2036d1b2 __CFRunLoopDoTimer + 923
22  CoreFoundation                	    0x7fff2036c771 __CFRunLoopDoTimers + 265
23  CoreFoundation                	    0x7fff20366db0 __CFRunLoopRun + 2010
24  CoreFoundation                	    0x7fff203660f3 CFRunLoopRunSpecific + 567
25  Flutter                       	       0x10fe7326f fml::MessageLoopDarwin::Run() + 65
26  Flutter                       	       0x10fe6d286 fml::MessageLoopImpl::DoRun() + 22
27  Flutter                       	       0x10fe7216d void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::Thread::Thread(std::__1::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0> >(void*) + 169
28  libsystem_pthread.dylib       	    0x7fff6da324f4 _pthread_start + 125
29  libsystem_pthread.dylib       	    0x7fff6da2e00f thread_start + 15

Thread 11:: io.flutter.1.io
0   libsystem_kernel.dylib        	    0x7fff6d9d4aba mach_msg_trap + 10
1   libsystem_kernel.dylib        	    0x7fff6d9d4e2b mach_msg + 59
2   CoreFoundation                	    0x7fff2036c440 __CFRunLoopServiceMachPort + 319
3   CoreFoundation                	    0x7fff20366ae3 __CFRunLoopRun + 1293
4   CoreFoundation                	    0x7fff203660f3 CFRunLoopRunSpecific + 567
5   Flutter                       	       0x10fe7326f fml::MessageLoopDarwin::Run() + 65
6   Flutter                       	       0x10fe6d286 fml::MessageLoopImpl::DoRun() + 22
7   Flutter                       	       0x10fe7216d void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::Thread::Thread(std::__1::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0> >(void*) + 169
8   libsystem_pthread.dylib       	    0x7fff6da324f4 _pthread_start + 125
9   libsystem_pthread.dylib       	    0x7fff6da2e00f thread_start + 15

Thread 12:: io.flutter.1.profiler
0   libsystem_kernel.dylib        	    0x7fff6d9d4aba mach_msg_trap + 10
1   libsystem_kernel.dylib        	    0x7fff6d9d4e2b mach_msg + 59
2   CoreFoundation                	    0x7fff2036c440 __CFRunLoopServiceMachPort + 319
3   CoreFoundation                	    0x7fff20366ae3 __CFRunLoopRun + 1293
4   CoreFoundation                	    0x7fff203660f3 CFRunLoopRunSpecific + 567
5   Flutter                       	       0x10fe7326f fml::MessageLoopDarwin::Run() + 65
6   Flutter                       	       0x10fe6d286 fml::MessageLoopImpl::DoRun() + 22
7   Flutter                       	       0x10fe7216d void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::Thread::Thread(std::__1::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0> >(void*) + 169
8   libsystem_pthread.dylib       	    0x7fff6da324f4 _pthread_start + 125
9   libsystem_pthread.dylib       	    0x7fff6da2e00f thread_start + 15

Thread 13:: io.worker.1
0   libsystem_kernel.dylib        	    0x7fff6d9d7506 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff6da32a69 _pthread_cond_wait + 1224
2   libc++.1.dylib                	    0x7fff202799e2 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 18
3   Flutter                       	       0x10fe6a3b3 fml::ConcurrentMessageLoop::WorkerMain() + 187
4   Flutter                       	       0x10fe6ab6f void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*) + 190
5   libsystem_pthread.dylib       	    0x7fff6da324f4 _pthread_start + 125
6   libsystem_pthread.dylib       	    0x7fff6da2e00f thread_start + 15

Thread 14:: io.worker.2
0   libsystem_kernel.dylib        	    0x7fff6d9d7506 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff6da32a69 _pthread_cond_wait + 1224
2   libc++.1.dylib                	    0x7fff202799e2 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 18
3   Flutter                       	       0x10fe6a3b3 fml::ConcurrentMessageLoop::WorkerMain() + 187
4   Flutter                       	       0x10fe6ab6f void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*) + 190
5   libsystem_pthread.dylib       	    0x7fff6da324f4 _pthread_start + 125
6   libsystem_pthread.dylib       	    0x7fff6da2e00f thread_start + 15

Thread 15:: io.worker.3
0   libsystem_kernel.dylib        	    0x7fff6d9d7506 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff6da32a69 _pthread_cond_wait + 1224
2   libc++.1.dylib                	    0x7fff202799e2 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 18
3   Flutter                       	       0x10fe6a3b3 fml::ConcurrentMessageLoop::WorkerMain() + 187
4   Flutter                       	       0x10fe6ab6f void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*) + 190
5   libsystem_pthread.dylib       	    0x7fff6da324f4 _pthread_start + 125
6   libsystem_pthread.dylib       	    0x7fff6da2e00f thread_start + 15

Thread 16:: io.worker.4
0   libsystem_kernel.dylib        	    0x7fff6d9d7506 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff6da32a69 _pthread_cond_wait + 1224
2   libc++.1.dylib                	    0x7fff202799e2 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 18
3   Flutter                       	       0x10fe6a3b3 fml::ConcurrentMessageLoop::WorkerMain() + 187
4   Flutter                       	       0x10fe6ab6f void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*) + 190
5   libsystem_pthread.dylib       	    0x7fff6da324f4 _pthread_start + 125
6   libsystem_pthread.dylib       	    0x7fff6da2e00f thread_start + 15

Thread 17:: io.worker.5
0   libsystem_kernel.dylib        	    0x7fff6d9d7506 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff6da32a69 _pthread_cond_wait + 1224
2   libc++.1.dylib                	    0x7fff202799e2 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 18
3   Flutter                       	       0x10fe6a3b3 fml::ConcurrentMessageLoop::WorkerMain() + 187
4   Flutter                       	       0x10fe6ab6f void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*) + 190
5   libsystem_pthread.dylib       	    0x7fff6da324f4 _pthread_start + 125
6   libsystem_pthread.dylib       	    0x7fff6da2e00f thread_start + 15

Thread 18:: io.worker.6
0   libsystem_kernel.dylib        	    0x7fff6d9d7506 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff6da32a69 _pthread_cond_wait + 1224
2   libc++.1.dylib                	    0x7fff202799e2 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 18
3   Flutter                       	       0x10fe6a3b3 fml::ConcurrentMessageLoop::WorkerMain() + 187
4   Flutter                       	       0x10fe6ab6f void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*) + 190
5   libsystem_pthread.dylib       	    0x7fff6da324f4 _pthread_start + 125
6   libsystem_pthread.dylib       	    0x7fff6da2e00f thread_start + 15

Thread 19:: io.worker.7
0   libsystem_kernel.dylib        	    0x7fff6d9d7506 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff6da32a69 _pthread_cond_wait + 1224
2   libc++.1.dylib                	    0x7fff202799e2 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 18
3   Flutter                       	       0x10fe6a3b3 fml::ConcurrentMessageLoop::WorkerMain() + 187
4   Flutter                       	       0x10fe6ab6f void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*) + 190
5   libsystem_pthread.dylib       	    0x7fff6da324f4 _pthread_start + 125
6   libsystem_pthread.dylib       	    0x7fff6da2e00f thread_start + 15

Thread 20:: io.worker.8
0   libsystem_kernel.dylib        	    0x7fff6d9d7506 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff6da32a69 _pthread_cond_wait + 1224
2   libc++.1.dylib                	    0x7fff202799e2 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 18
3   Flutter                       	       0x10fe6a3b3 fml::ConcurrentMessageLoop::WorkerMain() + 187
4   Flutter                       	       0x10fe6ab6f void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*) + 190
5   libsystem_pthread.dylib       	    0x7fff6da324f4 _pthread_start + 125
6   libsystem_pthread.dylib       	    0x7fff6da2e00f thread_start + 15

Thread 21:: dart:io EventHandler
0   libsystem_kernel.dylib        	    0x7fff6d9d945e kevent + 10
1   Flutter                       	       0x1100796d8 dart::bin::EventHandlerImplementation::EventHandlerEntry(unsigned long) + 344
2   Flutter                       	       0x110096628 dart::bin::ThreadStart(void*) + 40
3   libsystem_pthread.dylib       	    0x7fff6da324f4 _pthread_start + 125
4   libsystem_pthread.dylib       	    0x7fff6da2e00f thread_start + 15

Thread 22:: Dart Profiler ThreadInterrupter
0   libsystem_kernel.dylib        	    0x7fff6d9d7506 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff6da32a9f _pthread_cond_wait + 1278
2   Flutter                       	       0x110262716 dart::Monitor::WaitMicros(long long) + 134
3   Flutter                       	       0x1102e3bdf dart::ThreadInterrupter::ThreadMain(unsigned long) + 303
4   Flutter                       	       0x110261d0f dart::ThreadStart(void*) + 159
5   libsystem_pthread.dylib       	    0x7fff6da324f4 _pthread_start + 125
6   libsystem_pthread.dylib       	    0x7fff6da2e00f thread_start + 15

Thread 23:: Dart Profiler SampleBlockProcessor
0   libsystem_kernel.dylib        	    0x7fff6d9d7506 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff6da32a9f _pthread_cond_wait + 1278
2   Flutter                       	       0x110262716 dart::Monitor::WaitMicros(long long) + 134
3   Flutter                       	       0x110267e75 dart::SampleBlockProcessor::ThreadMain(unsigned long) + 181
4   Flutter                       	       0x110261d0f dart::ThreadStart(void*) + 159
5   libsystem_pthread.dylib       	    0x7fff6da324f4 _pthread_start + 125
6   libsystem_pthread.dylib       	    0x7fff6da2e00f thread_start + 15

Thread 24:: DartWorker
0   libsystem_kernel.dylib        	    0x7fff6d9d7506 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff6da32a9f _pthread_cond_wait + 1278
2   Flutter                       	       0x110262716 dart::Monitor::WaitMicros(long long) + 134
3   Flutter                       	       0x1102e493f dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 575
4   Flutter                       	       0x1102e4b29 dart::ThreadPool::Worker::Main(unsigned long) + 121
5   Flutter                       	       0x110261d0f dart::ThreadStart(void*) + 159
6   libsystem_pthread.dylib       	    0x7fff6da324f4 _pthread_start + 125
7   libsystem_pthread.dylib       	    0x7fff6da2e00f thread_start + 15

Thread 25:: DartWorker
0   libsystem_kernel.dylib        	    0x7fff6d9d7506 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff6da32a9f _pthread_cond_wait + 1278
2   Flutter                       	       0x110262716 dart::Monitor::WaitMicros(long long) + 134
3   Flutter                       	       0x1102e493f dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 575
4   Flutter                       	       0x1102e4b29 dart::ThreadPool::Worker::Main(unsigned long) + 121
5   Flutter                       	       0x110261d0f dart::ThreadStart(void*) + 159
6   libsystem_pthread.dylib       	    0x7fff6da324f4 _pthread_start + 125
7   libsystem_pthread.dylib       	    0x7fff6da2e00f thread_start + 15

Thread 26:: DartWorker
0   libsystem_kernel.dylib        	    0x7fff6d9d7506 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	    0x7fff6da32a9f _pthread_cond_wait + 1278
2   Flutter                       	       0x110262716 dart::Monitor::WaitMicros(long long) + 134
3   Flutter                       	       0x1102e493f dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 575
4   Flutter                       	       0x1102e4b29 dart::ThreadPool::Worker::Main(unsigned long) + 121
5   Flutter                       	       0x110261d0f dart::ThreadStart(void*) + 159
6   libsystem_pthread.dylib       	    0x7fff6da324f4 _pthread_start + 125
7   libsystem_pthread.dylib       	    0x7fff6da2e00f thread_start + 15

Thread 27:: DartWorker
0   libsystem_malloc.dylib        	    0x7fff2016d49f free + 0
1   libsystem_c.dylib             	    0x7fff200d2d17 __vfprintf + 16737
2   libsystem_c.dylib             	    0x7fff200f61e6 __v2printf + 606
3   libsystem_c.dylib             	    0x7fff200dc6ac _vsnprintf + 307
4   libsystem_c.dylib             	    0x7fff200dc76e vsnprintf + 95
5   Flutter                       	       0x11013b2b1 dart::Utils::VSNPrint(char*, unsigned long, char const*, __va_list_tag*) + 17
6   Flutter                       	       0x110139b32 dart::BaseTextBuffer::Printf(char const*, ...) + 210
7   Flutter                       	       0x1102b939b dart::Service::InvokeMethod(dart::Isolate*, dart::Array const&, bool) + 363
8   Flutter                       	       0x1101dd696 dart::NativeEntry::BootstrapNativeCallWrapper(_Dart_NativeArguments*, void (*)(_Dart_NativeArguments*)) + 214
9   ???                           	       0x1137026a4 ???
10  ???                           	       0x1199e9ac7 ???
11  ???                           	       0x1199e8198 ???
12  ???                           	       0x1199d62dd ???
13  ???                           	       0x1199d581f ???
14  ???                           	       0x1199d56d3 ???
15  ???                           	       0x1199cbf0e ???
16  ???                           	       0x1199cbc27 ???
17  ???                           	       0x1137e2071 ???
18  ???                           	       0x1137e1b40 ???
19  ???                           	       0x1137e1493 ???
20  ???                           	       0x1137e0e48 ???
21  ???                           	       0x1137e0a55 ???
22  ???                           	       0x1199cba3e ???
23  ???                           	       0x1137e2071 ???
24  ???                           	       0x1137e1b40 ???
25  ???                           	       0x1137e1493 ???
26  ???                           	       0x1199cb760 ???
27  ???                           	       0x1199cb488 ???
28  ???                           	       0x1199c85c9 ???
29  ???                           	       0x1199c3ca9 ???
30  ???                           	       0x1199c1c91 ???
31  ???                           	       0x1199c1aad ???
32  ???                           	       0x1137e2071 ???
33  ???                           	       0x1137e1b40 ???
34  ???                           	       0x1137e1493 ???
35  ???                           	       0x1137e0e48 ???
36  ???                           	       0x1137e0a55 ???
37  ???                           	       0x1137ee1f4 ???
38  ???                           	       0x1137ee00d ???
39  ???                           	       0x1137e2071 ???
40  ???                           	       0x1137e1b40 ???
41  ???                           	       0x1137e1493 ???
42  ???                           	       0x1137e0e48 ???
43  ???                           	       0x1137e0a55 ???
44  ???                           	       0x1137edf0d ???
45  ???                           	       0x1137dcc38 ???
46  ???                           	       0x1137d7cb9 ???
47  ???                           	       0x1137a3e7f ???
48  ???                           	       0x1137a3ace ???
49  ???                           	       0x1137a39f9 ???
50  ???                           	       0x1137a391e ???
51  ???                           	       0x11379f3b8 ???
52  ???                           	       0x113702a0c ???
53  Flutter                       	       0x11017e478 dart::DartEntry::InvokeCode(dart::Code const&, unsigned long, dart::Array const&, dart::Array const&, dart::Thread*) + 296
54  Flutter                       	       0x11017e30b dart::DartEntry::InvokeFunction(dart::Function const&, dart::Array const&, dart::Array const&, unsigned long) + 299
55  Flutter                       	       0x1101803c2 dart::DartLibraryCalls::HandleMessage(long long, dart::Instance const&) + 306
56  Flutter                       	       0x1101a0fc8 dart::IsolateMessageHandler::HandleMessage(std::__1::unique_ptr<dart::Message, std::__1::default_delete<dart::Message> >) + 872
57  Flutter                       	       0x1101c9fdd dart::MessageHandler::HandleMessages(dart::MonitorLocker*, bool, bool) + 301
58  Flutter                       	       0x1101ca607 dart::MessageHandler::TaskCallback() + 471
59  Flutter                       	       0x1102e4857 dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*) + 343
60  Flutter                       	       0x1102e4b29 dart::ThreadPool::Worker::Main(unsigned long) + 121
61  Flutter                       	       0x110261d0f dart::ThreadStart(void*) + 159
62  libsystem_pthread.dylib       	    0x7fff6da324f4 _pthread_start + 125
63  libsystem_pthread.dylib       	    0x7fff6da2e00f thread_start + 15


Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x000000011c9d6600  rcx: 0x00007ff7b3445b08  rdx: 0x0000000000000000
  rdi: 0x0000000000000103  rsi: 0x0000000000000006  rbp: 0x00007ff7b3445b30  rsp: 0x00007ff7b3445b08
   r8: 0x00007ff7b34459d0   r9: 0x00007fff20259455  r10: 0x0000000000000000  r11: 0x0000000000000246
  r12: 0x0000000000000103  r13: 0x0000003000000008  r14: 0x0000000000000006  r15: 0x0000000000000016
  rip: 0x00007fff6d9db112  rfl: 0x0000000000000246  cr2: 0x000000011bf95000
  
Logical CPU:     0
Error Code:      0x02000148 
Trap Number:     133


Binary Images:
    0x7fff6d9d4000 -     0x7fff6da0afff libsystem_kernel.dylib (*) <c1d58a50-5a4d-3bcb-a1fc-ec0902ce34d3> /usr/lib/system/libsystem_kernel.dylib
    0x7fff6da2c000 -     0x7fff6da37fff libsystem_pthread.dylib (*) <ee564342-d8f2-396d-b642-40092cf34d82> /usr/lib/system/libsystem_pthread.dylib
    0x7fff2008c000 -     0x7fff2010ffff libsystem_c.dylib (*) <cc1fe35f-cb2d-3d2d-87d6-c3fa0845fed0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_c.dylib
    0x7fff20246000 -     0x7fff2025bfff libc++abi.dylib (*) <5debcb1f-4943-370c-a370-b609f398b840> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libc++abi.dylib
    0x7fff20182000 -     0x7fff201b3fff libobjc.A.dylib (*) <93f5b266-3aac-3bce-ac53-eb50f1246ea9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libobjc.A.dylib
    0x7fff202ec000 -     0x7fff2068bfff com.apple.CoreFoundation (6.9) <c6308add-135b-3a70-9b81-1ce4d994c215> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
    0x7fff2c992000 -     0x7fff2c99afff com.apple.GraphicsServices (1.0) <adea8ae1-c723-351b-ac2e-22fd2c861c30> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
    0x7fff2438c000 -     0x7fff25934fff com.apple.UIKitCore (1.0) <3ef2c381-8193-3e3c-801f-925bd1050bd7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
       0x10cab8000 -        0x10cae3fff com.example.testApp (1.0.0) <fea7567c-5c2b-36dc-8196-4343d0eb2916> /Users/USER/Library/Developer/CoreSimulator/Devices/3BD8F2FF-FDB5-4074-8C91-54F99C79156D/data/Containers/Bundle/Application/E29E6E06-2CA3-40F8-86B9-E1EF7488EBE7/Runner.app/Runner
       0x10cd24000 -        0x10cd71fff dyld_sim (*) <3f15c197-2d43-3490-98ff-de85f18dadf2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/dyld_sim
       0x11c956000 -        0x11c9c1fff dyld (*) <7de33963-bbc5-3996-ba6e-f1d562c17c95> /usr/lib/dyld
    0x7fff206fa000 -     0x7fff209b0fff com.apple.Foundation (6.9) <61dcc68e-1236-3624-bb6d-a3a850adf63a> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Foundation.framework/Foundation
       0x10fb43000 -        0x111763fff io.flutter.flutter (1.0) <4c4c44c7-5555-3144-a176-d2ba27691c60> /Users/USER/Library/Developer/CoreSimulator/Devices/3BD8F2FF-FDB5-4074-8C91-54F99C79156D/data/Containers/Bundle/Application/E29E6E06-2CA3-40F8-86B9-E1EF7488EBE7/Runner.app/Frameworks/Flutter.framework/Flutter
    0x7fff37f69000 -     0x7fff3804afff com.apple.Metal (258.14) <f554a958-abc8-3287-8acd-e968ccb3f65e> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Metal.framework/Metal
    0x7fff20271000 -     0x7fff202c6fff libc++.1.dylib (*) <e8cad74f-72e8-33e0-9029-03722edb18f7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libc++.1.dylib
    0x7fff20158000 -     0x7fff20181fff libsystem_malloc.dylib (*) <3f6b65bb-ffbb-3e36-8772-cdd0d1b562c7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_malloc.dylib
               0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ???

EOF

-----------
Full Report
-----------

{"app_name":"Runner","timestamp":"2022-09-02 10:46:58.00 +0530","app_version":"1.0.0","slice_uuid":"fea7567c-5c2b-36dc-8196-4343d0eb2916","build_version":"1","platform":7,"bundleID":"com.example.testApp","share_with_app_devs":0,"is_first_party":0,"bug_type":"309","os_version":"macOS 12.2.1 (21D62)","incident_id":"0EEDC4AA-64B3-4E5D-B11F-69ECBFD3C1FC","name":"Runner"}
{
  "uptime" : 2700,
  "procLaunch" : "2022-09-02 10:46:48.5870 +0530",
  "procRole" : "Foreground",
  "version" : 2,
  "userID" : 501,
  "deployVersion" : 210,
  "modelCode" : "MacBookPro16,2",
  "procStartAbsTime" : 2780929008054,
  "coalitionID" : 1264,
  "osVersion" : {
    "train" : "macOS 12.2.1",
    "build" : "21D62",
    "releaseType" : "User"
  },
  "captureTime" : "2022-09-02 10:46:52.4726 +0530",
  "incident" : "0EEDC4AA-64B3-4E5D-B11F-69ECBFD3C1FC",
  "bug_type" : "309",
  "pid" : 5060,
  "procExitAbsTime" : 2784779618314,
  "cpuType" : "X86-64",
  "procName" : "Runner",
  "procPath" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/3BD8F2FF-FDB5-4074-8C91-54F99C79156D\/data\/Containers\/Bundle\/Application\/E29E6E06-2CA3-40F8-86B9-E1EF7488EBE7\/Runner.app\/Runner",
  "bundleInfo" : {"CFBundleShortVersionString":"1.0.0","CFBundleVersion":"1","CFBundleIdentifier":"com.example.testApp"},
  "storeInfo" : {"deviceIdentifierForVendor":"910FEFD4-1054-5B42-B50D-724F415D5F8A","thirdParty":true},
  "parentProc" : "launchd_sim",
  "parentPid" : 2175,
  "coalitionName" : "com.apple.CoreSimulator.SimDevice.3BD8F2FF-FDB5-4074-8C91-54F99C79156D",
  "crashReporterKey" : "61D12090-CD56-B877-7B8C-9C3A0B4CF7D4",
  "responsiblePid" : 813,
  "responsibleProc" : "SimulatorTrampoline",
  "wakeTime" : 1395,
  "bridgeVersion" : {"build":"19P744","train":"6.2"},
  "sleepWakeUUID" : "BEE5BB85-0E20-42EA-8125-7703F087A3F3",
  "sip" : "enabled",
  "isCorpse" : 1,
  "exception" : {"codes":"0x0000000000000000, 0x0000000000000000","rawCodes":[0,0],"type":"EXC_CRASH","signal":"SIGABRT"},
  "asi" : {"dyld_sim":["dyld4 config: DYLD_ROOT_PATH=\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot"],"libsystem_sim_platform.dylib":["CoreSimulator 783.5 - Device: iPhone 13 (3BD8F2FF-FDB5-4074-8C91-54F99C79156D) - Runtime: iOS 15.2 (19C51) - DeviceType: iPhone 13"],"libc++abi.dylib":["terminating with uncaught exception of type NSException"],"CoreFoundation":["*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Transformed points can't form a rect'"],"dyld":["dyld4 config: DYLD_ROOT_PATH=\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot"],"libsystem_c.dylib":["abort() called"]},
  "asiBacktraces" : ["0   CoreFoundation                      0x00007fff203feba4 __exceptionPreprocess + 242\n1   libobjc.A.dylib                     0x00007fff201a1be7 objc_exception_throw + 48\n2   Foundation                          0x00007fff20753c39 -[NSMutableDictionary(NSMutableDictionary) classForCoder] + 0\n3   Flutter                             0x000000010fb742fc _ZN12_GLOBAL__N_119ConvertRectToGlobalEP15SemanticsObject6CGRect + 677\n4   Flutter                             0x000000010fb76a38 -[SemanticsObject globalRect] + 142\n5   Flutter                             0x000000010fb76974 -[SemanticsObject accessibilityFrame] + 189\n6   Flutter                             0x000000010fb73bf1 -[FlutterScrollableSemanticsObject accessibilityBridgeDidFinishUpdate] + 51\n7   Flutter                             0x000000010fb79cd2 _ZN7flutter19AccessibilityBridge15UpdateSemanticsENSt3__113unordered_mapIiNS_13SemanticsNodeENS1_4hashIiEENS1_8equal_toIiEENS1_9allocatorINS1_4pairIKiS3_EEEEEENS2_IiNS_25CustomAccessibilityActionES5_S7_NS8_INS9_ISA_SE_EEEEEE + 2980\n8   Flutter                             0x000000010fb82a6c _ZN7flutter15PlatformViewIOS15UpdateSemanticsENSt3__113unordered_mapIiNS_13SemanticsNodeENS1_4hashIiEENS1_8equal_toIiEENS1_9allocatorINS1_4pairIKiS3_EEEEEENS2_IiNS_25CustomAccessibilityActionES5_S7_NS8_INS9_ISA_SE_EEEEEE + 80\n9   Flutter                             0x000000010ff743b2 _ZNSt3__110__function6__funcIZN7flutter5Shell23OnEngineUpdateSemanticsENS_13unordered_mapIiNS2_13SemanticsNodeENS_4hashIiEENS_8equal_toIiEENS_9allocatorINS_4pairIKiS5_EEEEEENS4_IiNS2_25CustomAccessibilityActionES7_S9_NSA_INSB_ISC_SG_EEEEEEE4$_40NSA_ISK_EEFvvEEclEv + 108\n10  Flutter                             0x000000010fe6d375 _ZN3fml15MessageLoopImpl10FlushTasksENS_9FlushTypeE + 163\n11  Flutter                             0x000000010fe73132 _ZN3fml17MessageLoopDarwin11OnTimerFireEP16__CFRunLoopTimerPS0_ + 26\n12  CoreFoundation                      0x00007fff2036d6b6 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20\n13  CoreFoundation                      0x00007fff2036d1b2 __CFRunLoopDoTimer + 923\n14  CoreFoundation                      0x00007fff2036c771 __CFRunLoopDoTimers + 265\n15  CoreFoundation                      0x00007fff20366db0 __CFRunLoopRun + 2010\n16  CoreFoundation                      0x00007fff203660f3 CFRunLoopRunSpecific + 567\n17  GraphicsServices                    0x00007fff2c995cd3 GSEventRunModal + 139\n18  UIKitCore                           0x00007fff25059f42 -[UIApplication _run] + 928\n19  UIKitCore                           0x00007fff2505eb5e UIApplicationMain + 101\n20  Runner                              0x000000010cabd6df main + 63\n21  dyld                                0x000000010cd25ee9 start_sim + 10\n22  ???                                 0x000000011c95b4fe 0x0 + 4774540542"],
  "extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0},
  "lastExceptionBacktrace" : [{"imageOffset":1125268,"symbol":"__exceptionPreprocess","symbolLocation":226,"imageIndex":5},{"imageOffset":130023,"symbol":"objc_exception_throw","symbolLocation":48,"imageIndex":4},{"imageOffset":367673,"symbol":"-[NSMutableDictionary(NSMutableDictionary) classForCoder]","symbolLocation":0,"imageIndex":11},{"imageOffset":201468,"symbol":"(anonymous namespace)::ConvertRectToGlobal(SemanticsObject*, CGRect)","symbolLocation":677,"imageIndex":12},{"imageOffset":211512,"symbol":"-[SemanticsObject globalRect]","symbolLocation":142,"imageIndex":12},{"imageOffset":211316,"symbol":"-[SemanticsObject accessibilityFrame]","symbolLocation":189,"imageIndex":12},{"imageOffset":199665,"symbol":"-[FlutterScrollableSemanticsObject accessibilityBridgeDidFinishUpdate]","symbolLocation":51,"imageIndex":12},{"imageOffset":224466,"symbol":"flutter::AccessibilityBridge::UpdateSemantics(std::__1::unordered_map<int, flutter::SemanticsNode, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, flutter::SemanticsNode> > >, std::__1::unordered_map<int, flutter::CustomAccessibilityAction, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, flutter::CustomAccessibilityAction> > >)","symbolLocation":2980,"imageIndex":12},{"imageOffset":260716,"symbol":"flutter::PlatformViewIOS::UpdateSemantics(std::__1::unordered_map<int, flutter::SemanticsNode, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, flutter::SemanticsNode> > >, std::__1::unordered_map<int, flutter::CustomAccessibilityAction, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, flutter::CustomAccessibilityAction> > >)","symbolLocation":80,"imageIndex":12},{"imageOffset":4395954,"symbol":"std::__1::__function::__func<flutter::Shell::OnEngineUpdateSemantics(std::__1::unordered_map<int, flutter::SemanticsNode, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, flutter::SemanticsNode> > >, std::__1::unordered_map<int, flutter::CustomAccessibilityAction, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, flutter::CustomAccessibilityAction> > >)::$_40, std::__1::allocator<flutter::Shell::OnEngineUpdateSemantics(std::__1::unordered_map<int, flutter::SemanticsNode, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, flutter::SemanticsNode> > >, std::__1::unordered_map<int, flutter::CustomAccessibilityAction, std::__1::hash<int>, std::__1::equal_to<int>, std::__1::allocator<std::__1::pair<int const, flutter::CustomAccessibilityAction> > >)::$_40>, void ()>::operator()()","symbolLocation":108,"imageIndex":12},{"imageOffset":3318645,"symbol":"fml::MessageLoopImpl::FlushTasks(fml::FlushType)","symbolLocation":163,"imageIndex":12},{"imageOffset":3342642,"symbol":"fml::MessageLoopDarwin::OnTimerFire(__CFRunLoopTimer*, fml::MessageLoopDarwin*)","symbolLocation":26,"imageIndex":12},{"imageOffset":530102,"symbol":"__CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__","symbolLocation":20,"imageIndex":5},{"imageOffset":528818,"symbol":"__CFRunLoopDoTimer","symbolLocation":923,"imageIndex":5},{"imageOffset":526193,"symbol":"__CFRunLoopDoTimers","symbolLocation":265,"imageIndex":5},{"imageOffset":503216,"symbol":"__CFRunLoopRun","symbolLocation":2010,"imageIndex":5},{"imageOffset":499955,"symbol":"CFRunLoopRunSpecific","symbolLocation":567,"imageIndex":5},{"imageOffset":15571,"symbol":"GSEventRunModal","symbolLocation":139,"imageIndex":6},{"imageOffset":13426498,"symbol":"-[UIApplication _run]","symbolLocation":928,"imageIndex":7},{"imageOffset":13445982,"symbol":"UIApplicationMain","symbolLocation":101,"imageIndex":7},{"imageOffset":22239,"sourceLine":5,"sourceFile":"AppDelegate.swift","symbol":"main","imageIndex":8,"symbolLocation":63},{"imageOffset":7913,"symbol":"start_sim","symbolLocation":10,"imageIndex":9},{"imageOffset":21758,"symbol":"start","symbolLocation":462,"imageIndex":10}],
  "faultingThread" : 0,
  "threads" : [{"triggered":true,"id":37699,"threadState":{"r13":{"value":206158430216},"rax":{"value":0},"rflags":{"value":582},"cpu":{"value":0},"r14":{"value":6},"rsi":{"value":6},"r8":{"value":140701841250768},"cr2":{"value":4764291072},"rdx":{"value":0},"r10":{"value":0},"r9":{"value":140733732721749},"r15":{"value":22},"rbx":{"value":4775044608,"symbolLocation":0,"symbol":"_main_thread"},"trap":{"value":133},"err":{"value":33554760},"r11":{"value":582},"rip":{"value":140735032439058,"matchesCrashFrame":1},"rbp":{"value":140701841251120},"rsp":{"value":140701841251080},"r12":{"value":259},"rcx":{"value":140701841251080},"flavor":"x86_THREAD_STATE","rdi":{"value":259}},"queue":"com.apple.main-thread","frames":[{"imageOffset":28946,"symbol":"__pthread_kill","symbolLocation":10,"imageIndex":0},{"imageOffset":25108,"symbol":"pthread_kill","symbolLocation":263,"imageIndex":1},{"imageOffset":509572,"symbol":"abort","symbolLocation":123,"imageIndex":2},{"imageOffset":67010,"symbol":"abort_message","symbolLocation":241,"imageIndex":3},{"imageOffset":5997,"symbol":"demangling_terminate_handler()","symbolLocation":266,"imageIndex":3},{"imageOffset":23579,"symbol":"_objc_terminate()","symbolLocation":96,"imageIndex":4},{"imageOffset":63975,"symbol":"std::__terminate(void (*)())","symbolLocation":8,"imageIndex":3},{"imageOffset":74324,"symbol":"__cxa_rethrow","symbolLocation":99,"imageIndex":3},{"imageOffset":130374,"symbol":"objc_exception_rethrow","symbolLocation":37,"imageIndex":4},{"imageOffset":500249,"symbol":"CFRunLoopRunSpecific","symbolLocation":861,"imageIndex":5},{"imageOffset":15571,"symbol":"GSEventRunModal","symbolLocation":139,"imageIndex":6},{"imageOffset":13426498,"symbol":"-[UIApplication _run]","symbolLocation":928,"imageIndex":7},{"imageOffset":13445982,"symbol":"UIApplicationMain","symbolLocation":101,"imageIndex":7},{"imageOffset":22239,"sourceLine":5,"sourceFile":"AppDelegate.swift","symbol":"main","imageIndex":8,"symbolLocation":63},{"imageOffset":7913,"symbol":"start_sim","symbolLocation":10,"imageIndex":9},{"imageOffset":21758,"symbol":"start","symbolLocation":462,"imageIndex":10}]},{"id":37709,"frames":[{"imageOffset":8172,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":1}]},{"id":37710,"frames":[{"imageOffset":8172,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":1}]},{"id":37711,"frames":[{"imageOffset":8172,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":1}]},{"id":37718,"name":"com.apple.uikit.eventfetch-thread","frames":[{"imageOffset":2746,"symbol":"mach_msg_trap","symbolLocation":10,"imageIndex":0},{"imageOffset":3627,"symbol":"mach_msg","symbolLocation":59,"imageIndex":0},{"imageOffset":525376,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":319,"imageIndex":5},{"imageOffset":502499,"symbol":"__CFRunLoopRun","symbolLocation":1293,"imageIndex":5},{"imageOffset":499955,"symbol":"CFRunLoopRunSpecific","symbolLocation":567,"imageIndex":5},{"imageOffset":1189716,"symbol":"-[NSRunLoop(NSRunLoop) runMode:beforeDate:]","symbolLocation":213,"imageIndex":11},{"imageOffset":1190347,"symbol":"-[NSRunLoop(NSRunLoop) runUntilDate:]","symbolLocation":72,"imageIndex":11},{"imageOffset":14213841,"symbol":"-[UIEventFetcher threadMain]","symbolLocation":491,"imageIndex":7},{"imageOffset":1357136,"symbol":"__NSThread__start__","symbolLocation":1025,"imageIndex":11},{"imageOffset":25844,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":1},{"imageOffset":8207,"symbol":"thread_start","symbolLocation":15,"imageIndex":1}]},{"id":37719,"frames":[{"imageOffset":8172,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":1}]},{"id":37720,"frames":[{"imageOffset":8172,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":1}]},{"id":37721,"frames":[{"imageOffset":8172,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":1}]},{"id":37722,"frames":[{"imageOffset":8172,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":1}]},{"id":37747,"name":"io.flutter.1.ui","frames":[{"imageOffset":2746,"symbol":"mach_msg_trap","symbolLocation":10,"imageIndex":0},{"imageOffset":3627,"symbol":"mach_msg","symbolLocation":59,"imageIndex":0},{"imageOffset":525376,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":319,"imageIndex":5},{"imageOffset":502499,"symbol":"__CFRunLoopRun","symbolLocation":1293,"imageIndex":5},{"imageOffset":499955,"symbol":"CFRunLoopRunSpecific","symbolLocation":567,"imageIndex":5},{"imageOffset":3342959,"symbol":"fml::MessageLoopDarwin::Run()","symbolLocation":65,"imageIndex":12},{"imageOffset":3318406,"symbol":"fml::MessageLoopImpl::DoRun()","symbolLocation":22,"imageIndex":12},{"imageOffset":3338605,"symbol":"void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::Thread::Thread(std::__1::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0> >(void*)","symbolLocation":169,"imageIndex":12},{"imageOffset":25844,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":1},{"imageOffset":8207,"symbol":"thread_start","symbolLocation":15,"imageIndex":1}]},{"id":37748,"name":"io.flutter.1.raster","frames":[{"imageOffset":13574,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":0},{"imageOffset":27241,"symbol":"_pthread_cond_wait","symbolLocation":1224,"imageIndex":1},{"imageOffset":711394,"symbol":"-[_MTLCommandBuffer waitUntilScheduled]","symbolLocation":67,"imageIndex":13},{"imageOffset":2512989,"symbol":"GrMtlCommandBuffer::commit(bool)","symbolLocation":153,"imageIndex":12},{"imageOffset":2518507,"symbol":"GrMtlGpu::submitCommandBuffer(GrMtlGpu::SyncQueue)","symbolLocation":51,"imageIndex":12},{"imageOffset":1854911,"symbol":"GrGpu::submitToGpu(bool)","symbolLocation":73,"imageIndex":12},{"imageOffset":344849,"symbol":"SkCanvas::onFlush()","symbolLocation":73,"imageIndex":12},{"imageOffset":6246093,"symbol":"std::__1::__function::__func<flutter::GPUSurfaceMetalSkia::AcquireFrameFromCAMetalLayer(SkISize const&)::$_1, std::__1::allocator<flutter::GPUSurfaceMetalSkia::AcquireFrameFromCAMetalLayer(SkISize const&)::$_1>, bool (flutter::SurfaceFrame&, SkCanvas*)>::operator()(flutter::SurfaceFrame&, SkCanvas*&&)","symbolLocation":85,"imageIndex":12},{"imageOffset":5173702,"symbol":"flutter::SurfaceFrame::Submit()","symbolLocation":50,"imageIndex":12},{"imageOffset":4312076,"symbol":"flutter::Rasterizer::DrawToSurfaceUnsafe(flutter::FrameTimingsRecorder&, flutter::LayerTree&)","symbolLocation":1140,"imageIndex":12},{"imageOffset":4319406,"symbol":"std::__1::__function::__func<flutter::Rasterizer::DrawToSurface(flutter::FrameTimingsRecorder&, flutter::LayerTree&)::$_6, std::__1::allocator<flutter::Rasterizer::DrawToSurface(flutter::FrameTimingsRecorder&, flutter::LayerTree&)::$_6>, void ()>::operator()()","symbolLocation":26,"imageIndex":12},{"imageOffset":3330143,"symbol":"fml::SyncSwitch::Execute(fml::SyncSwitch::Handlers const&) const","symbolLocation":55,"imageIndex":12},{"imageOffset":4305624,"symbol":"flutter::Rasterizer::DrawToSurface(flutter::FrameTimingsRecorder&, flutter::LayerTree&)","symbolLocation":356,"imageIndex":12},{"imageOffset":4309332,"symbol":"flutter::Rasterizer::DoDraw(std::__1::unique_ptr<flutter::FrameTimingsRecorder, std::__1::default_delete<flutter::FrameTimingsRecorder> >, std::__1::shared_ptr<flutter::LayerTree>)","symbolLocation":120,"imageIndex":12},{"imageOffset":4314519,"symbol":"std::__1::__function::__func<flutter::Rasterizer::Draw(std::__1::shared_ptr<flutter::Pipeline<flutter::LayerTreeItem> >, std::__1::function<bool (flutter::LayerTree&)>)::$_2, std::__1::allocator<flutter::Rasterizer::Draw(std::__1::shared_ptr<flutter::Pipeline<flutter::LayerTreeItem> >, std::__1::function<bool (flutter::LayerTree&)>)::$_2>, void (std::__1::unique_ptr<flutter::LayerTreeItem, std::__1::default_delete<flutter::LayerTreeItem> >)>::operator()(std::__1::unique_ptr<flutter::LayerTreeItem, std::__1::default_delete<flutter::LayerTreeItem> >&&)","symbolLocation":193,"imageIndex":12},{"imageOffset":4307989,"symbol":"flutter::Pipeline<flutter::LayerTreeItem>::Consume(std::__1::function<void (std::__1::unique_ptr<flutter::LayerTreeItem, std::__1::default_delete<flutter::LayerTreeItem> >)> const&)","symbolLocation":199,"imageIndex":12},{"imageOffset":4306053,"symbol":"flutter::Rasterizer::Draw(std::__1::shared_ptr<flutter::Pipeline<flutter::LayerTreeItem> >, std::__1::function<bool (flutter::LayerTree&)>)","symbolLocation":155,"imageIndex":12},{"imageOffset":4394613,"symbol":"std::__1::__function::__func<fml::internal::CopyableLambda<flutter::Shell::OnAnimatorDraw(std::__1::shared_ptr<flutter::Pipeline<flutter::LayerTreeItem> >)::$_12>, std::__1::allocator<fml::internal::CopyableLambda<flutter::Shell::OnAnimatorDraw(std::__1::shared_ptr<flutter::Pipeline<flutter::LayerTreeItem> >)::$_12> >, void ()>::operator()()","symbolLocation":169,"imageIndex":12},{"imageOffset":3318645,"symbol":"fml::MessageLoopImpl::FlushTasks(fml::FlushType)","symbolLocation":163,"imageIndex":12},{"imageOffset":3342642,"symbol":"fml::MessageLoopDarwin::OnTimerFire(__CFRunLoopTimer*, fml::MessageLoopDarwin*)","symbolLocation":26,"imageIndex":12},{"imageOffset":530102,"symbol":"__CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__","symbolLocation":20,"imageIndex":5},{"imageOffset":528818,"symbol":"__CFRunLoopDoTimer","symbolLocation":923,"imageIndex":5},{"imageOffset":526193,"symbol":"__CFRunLoopDoTimers","symbolLocation":265,"imageIndex":5},{"imageOffset":503216,"symbol":"__CFRunLoopRun","symbolLocation":2010,"imageIndex":5},{"imageOffset":499955,"symbol":"CFRunLoopRunSpecific","symbolLocation":567,"imageIndex":5},{"imageOffset":3342959,"symbol":"fml::MessageLoopDarwin::Run()","symbolLocation":65,"imageIndex":12},{"imageOffset":3318406,"symbol":"fml::MessageLoopImpl::DoRun()","symbolLocation":22,"imageIndex":12},{"imageOffset":3338605,"symbol":"void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::Thread::Thread(std::__1::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0> >(void*)","symbolLocation":169,"imageIndex":12},{"imageOffset":25844,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":1},{"imageOffset":8207,"symbol":"thread_start","symbolLocation":15,"imageIndex":1}]},{"id":37749,"name":"io.flutter.1.io","frames":[{"imageOffset":2746,"symbol":"mach_msg_trap","symbolLocation":10,"imageIndex":0},{"imageOffset":3627,"symbol":"mach_msg","symbolLocation":59,"imageIndex":0},{"imageOffset":525376,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":319,"imageIndex":5},{"imageOffset":502499,"symbol":"__CFRunLoopRun","symbolLocation":1293,"imageIndex":5},{"imageOffset":499955,"symbol":"CFRunLoopRunSpecific","symbolLocation":567,"imageIndex":5},{"imageOffset":3342959,"symbol":"fml::MessageLoopDarwin::Run()","symbolLocation":65,"imageIndex":12},{"imageOffset":3318406,"symbol":"fml::MessageLoopImpl::DoRun()","symbolLocation":22,"imageIndex":12},{"imageOffset":3338605,"symbol":"void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::Thread::Thread(std::__1::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0> >(void*)","symbolLocation":169,"imageIndex":12},{"imageOffset":25844,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":1},{"imageOffset":8207,"symbol":"thread_start","symbolLocation":15,"imageIndex":1}]},{"id":37750,"name":"io.flutter.1.profiler","frames":[{"imageOffset":2746,"symbol":"mach_msg_trap","symbolLocation":10,"imageIndex":0},{"imageOffset":3627,"symbol":"mach_msg","symbolLocation":59,"imageIndex":0},{"imageOffset":525376,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":319,"imageIndex":5},{"imageOffset":502499,"symbol":"__CFRunLoopRun","symbolLocation":1293,"imageIndex":5},{"imageOffset":499955,"symbol":"CFRunLoopRunSpecific","symbolLocation":567,"imageIndex":5},{"imageOffset":3342959,"symbol":"fml::MessageLoopDarwin::Run()","symbolLocation":65,"imageIndex":12},{"imageOffset":3318406,"symbol":"fml::MessageLoopImpl::DoRun()","symbolLocation":22,"imageIndex":12},{"imageOffset":3338605,"symbol":"void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::Thread::Thread(std::__1::function<void (fml::Thread::ThreadConfig const&)> const&, fml::Thread::ThreadConfig const&)::$_0> >(void*)","symbolLocation":169,"imageIndex":12},{"imageOffset":25844,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":1},{"imageOffset":8207,"symbol":"thread_start","symbolLocation":15,"imageIndex":1}]},{"id":37751,"name":"io.worker.1","frames":[{"imageOffset":13574,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":0},{"imageOffset":27241,"symbol":"_pthread_cond_wait","symbolLocation":1224,"imageIndex":1},{"imageOffset":35298,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":18,"imageIndex":14},{"imageOffset":3306419,"symbol":"fml::ConcurrentMessageLoop::WorkerMain()","symbolLocation":187,"imageIndex":12},{"imageOffset":3308399,"symbol":"void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*)","symbolLocation":190,"imageIndex":12},{"imageOffset":25844,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":1},{"imageOffset":8207,"symbol":"thread_start","symbolLocation":15,"imageIndex":1}]},{"id":37752,"name":"io.worker.2","frames":[{"imageOffset":13574,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":0},{"imageOffset":27241,"symbol":"_pthread_cond_wait","symbolLocation":1224,"imageIndex":1},{"imageOffset":35298,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":18,"imageIndex":14},{"imageOffset":3306419,"symbol":"fml::ConcurrentMessageLoop::WorkerMain()","symbolLocation":187,"imageIndex":12},{"imageOffset":3308399,"symbol":"void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*)","symbolLocation":190,"imageIndex":12},{"imageOffset":25844,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":1},{"imageOffset":8207,"symbol":"thread_start","symbolLocation":15,"imageIndex":1}]},{"id":37753,"name":"io.worker.3","frames":[{"imageOffset":13574,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":0},{"imageOffset":27241,"symbol":"_pthread_cond_wait","symbolLocation":1224,"imageIndex":1},{"imageOffset":35298,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":18,"imageIndex":14},{"imageOffset":3306419,"symbol":"fml::ConcurrentMessageLoop::WorkerMain()","symbolLocation":187,"imageIndex":12},{"imageOffset":3308399,"symbol":"void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*)","symbolLocation":190,"imageIndex":12},{"imageOffset":25844,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":1},{"imageOffset":8207,"symbol":"thread_start","symbolLocation":15,"imageIndex":1}]},{"id":37754,"name":"io.worker.4","frames":[{"imageOffset":13574,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":0},{"imageOffset":27241,"symbol":"_pthread_cond_wait","symbolLocation":1224,"imageIndex":1},{"imageOffset":35298,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":18,"imageIndex":14},{"imageOffset":3306419,"symbol":"fml::ConcurrentMessageLoop::WorkerMain()","symbolLocation":187,"imageIndex":12},{"imageOffset":3308399,"symbol":"void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*)","symbolLocation":190,"imageIndex":12},{"imageOffset":25844,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":1},{"imageOffset":8207,"symbol":"thread_start","symbolLocation":15,"imageIndex":1}]},{"id":37755,"name":"io.worker.5","frames":[{"imageOffset":13574,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":0},{"imageOffset":27241,"symbol":"_pthread_cond_wait","symbolLocation":1224,"imageIndex":1},{"imageOffset":35298,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":18,"imageIndex":14},{"imageOffset":3306419,"symbol":"fml::ConcurrentMessageLoop::WorkerMain()","symbolLocation":187,"imageIndex":12},{"imageOffset":3308399,"symbol":"void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*)","symbolLocation":190,"imageIndex":12},{"imageOffset":25844,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":1},{"imageOffset":8207,"symbol":"thread_start","symbolLocation":15,"imageIndex":1}]},{"id":37756,"name":"io.worker.6","frames":[{"imageOffset":13574,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":0},{"imageOffset":27241,"symbol":"_pthread_cond_wait","symbolLocation":1224,"imageIndex":1},{"imageOffset":35298,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":18,"imageIndex":14},{"imageOffset":3306419,"symbol":"fml::ConcurrentMessageLoop::WorkerMain()","symbolLocation":187,"imageIndex":12},{"imageOffset":3308399,"symbol":"void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*)","symbolLocation":190,"imageIndex":12},{"imageOffset":25844,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":1},{"imageOffset":8207,"symbol":"thread_start","symbolLocation":15,"imageIndex":1}]},{"id":37757,"name":"io.worker.7","frames":[{"imageOffset":13574,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":0},{"imageOffset":27241,"symbol":"_pthread_cond_wait","symbolLocation":1224,"imageIndex":1},{"imageOffset":35298,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":18,"imageIndex":14},{"imageOffset":3306419,"symbol":"fml::ConcurrentMessageLoop::WorkerMain()","symbolLocation":187,"imageIndex":12},{"imageOffset":3308399,"symbol":"void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*)","symbolLocation":190,"imageIndex":12},{"imageOffset":25844,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":1},{"imageOffset":8207,"symbol":"thread_start","symbolLocation":15,"imageIndex":1}]},{"id":37758,"name":"io.worker.8","frames":[{"imageOffset":13574,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":0},{"imageOffset":27241,"symbol":"_pthread_cond_wait","symbolLocation":1224,"imageIndex":1},{"imageOffset":35298,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":18,"imageIndex":14},{"imageOffset":3306419,"symbol":"fml::ConcurrentMessageLoop::WorkerMain()","symbolLocation":187,"imageIndex":12},{"imageOffset":3308399,"symbol":"void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*)","symbolLocation":190,"imageIndex":12},{"imageOffset":25844,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":1},{"imageOffset":8207,"symbol":"thread_start","symbolLocation":15,"imageIndex":1}]},{"id":37759,"name":"dart:io EventHandler","frames":[{"imageOffset":21598,"symbol":"kevent","symbolLocation":10,"imageIndex":0},{"imageOffset":5465816,"symbol":"dart::bin::EventHandlerImplementation::EventHandlerEntry(unsigned long)","symbolLocation":344,"imageIndex":12},{"imageOffset":5584424,"symbol":"dart::bin::ThreadStart(void*)","symbolLocation":40,"imageIndex":12},{"imageOffset":25844,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":1},{"imageOffset":8207,"symbol":"thread_start","symbolLocation":15,"imageIndex":1}]},{"id":37760,"name":"Dart Profiler ThreadInterrupter","frames":[{"imageOffset":13574,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":0},{"imageOffset":27295,"symbol":"_pthread_cond_wait","symbolLocation":1278,"imageIndex":1},{"imageOffset":7468822,"symbol":"dart::Monitor::WaitMicros(long long)","symbolLocation":134,"imageIndex":12},{"imageOffset":7998431,"symbol":"dart::ThreadInterrupter::ThreadMain(unsigned long)","symbolLocation":303,"imageIndex":12},{"imageOffset":7466255,"symbol":"dart::ThreadStart(void*)","symbolLocation":159,"imageIndex":12},{"imageOffset":25844,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":1},{"imageOffset":8207,"symbol":"thread_start","symbolLocation":15,"imageIndex":1}]},{"id":37761,"name":"Dart Profiler SampleBlockProcessor","frames":[{"imageOffset":13574,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":0},{"imageOffset":27295,"symbol":"_pthread_cond_wait","symbolLocation":1278,"imageIndex":1},{"imageOffset":7468822,"symbol":"dart::Monitor::WaitMicros(long long)","symbolLocation":134,"imageIndex":12},{"imageOffset":7491189,"symbol":"dart::SampleBlockProcessor::ThreadMain(unsigned long)","symbolLocation":181,"imageIndex":12},{"imageOffset":7466255,"symbol":"dart::ThreadStart(void*)","symbolLocation":159,"imageIndex":12},{"imageOffset":25844,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":1},{"imageOffset":8207,"symbol":"thread_start","symbolLocation":15,"imageIndex":1}]},{"id":37762,"name":"DartWorker","frames":[{"imageOffset":13574,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":0},{"imageOffset":27295,"symbol":"_pthread_cond_wait","symbolLocation":1278,"imageIndex":1},{"imageOffset":7468822,"symbol":"dart::Monitor::WaitMicros(long long)","symbolLocation":134,"imageIndex":12},{"imageOffset":8001855,"symbol":"dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*)","symbolLocation":575,"imageIndex":12},{"imageOffset":8002345,"symbol":"dart::ThreadPool::Worker::Main(unsigned long)","symbolLocation":121,"imageIndex":12},{"imageOffset":7466255,"symbol":"dart::ThreadStart(void*)","symbolLocation":159,"imageIndex":12},{"imageOffset":25844,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":1},{"imageOffset":8207,"symbol":"thread_start","symbolLocation":15,"imageIndex":1}]},{"id":37766,"name":"DartWorker","frames":[{"imageOffset":13574,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":0},{"imageOffset":27295,"symbol":"_pthread_cond_wait","symbolLocation":1278,"imageIndex":1},{"imageOffset":7468822,"symbol":"dart::Monitor::WaitMicros(long long)","symbolLocation":134,"imageIndex":12},{"imageOffset":8001855,"symbol":"dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*)","symbolLocation":575,"imageIndex":12},{"imageOffset":8002345,"symbol":"dart::ThreadPool::Worker::Main(unsigned long)","symbolLocation":121,"imageIndex":12},{"imageOffset":7466255,"symbol":"dart::ThreadStart(void*)","symbolLocation":159,"imageIndex":12},{"imageOffset":25844,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":1},{"imageOffset":8207,"symbol":"thread_start","symbolLocation":15,"imageIndex":1}]},{"id":37767,"name":"DartWorker","frames":[{"imageOffset":13574,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":0},{"imageOffset":27295,"symbol":"_pthread_cond_wait","symbolLocation":1278,"imageIndex":1},{"imageOffset":7468822,"symbol":"dart::Monitor::WaitMicros(long long)","symbolLocation":134,"imageIndex":12},{"imageOffset":8001855,"symbol":"dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*)","symbolLocation":575,"imageIndex":12},{"imageOffset":8002345,"symbol":"dart::ThreadPool::Worker::Main(unsigned long)","symbolLocation":121,"imageIndex":12},{"imageOffset":7466255,"symbol":"dart::ThreadStart(void*)","symbolLocation":159,"imageIndex":12},{"imageOffset":25844,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":1},{"imageOffset":8207,"symbol":"thread_start","symbolLocation":15,"imageIndex":1}]},{"id":37768,"name":"DartWorker","frames":[{"imageOffset":87199,"symbol":"free","symbolLocation":0,"imageIndex":15},{"imageOffset":290071,"symbol":"__vfprintf","symbolLocation":16737,"imageIndex":2},{"imageOffset":434662,"symbol":"__v2printf","symbolLocation":606,"imageIndex":2},{"imageOffset":329388,"symbol":"_vsnprintf","symbolLocation":307,"imageIndex":2},{"imageOffset":329582,"symbol":"vsnprintf","symbolLocation":95,"imageIndex":2},{"imageOffset":6259377,"symbol":"dart::Utils::VSNPrint(char*, unsigned long, char const*, __va_list_tag*)","symbolLocation":17,"imageIndex":12},{"imageOffset":6253362,"symbol":"dart::BaseTextBuffer::Printf(char const*, ...)","symbolLocation":210,"imageIndex":12},{"imageOffset":7824283,"symbol":"dart::Service::InvokeMethod(dart::Isolate*, dart::Array const&, bool)","symbolLocation":363,"imageIndex":12},{"imageOffset":6923926,"symbol":"dart::NativeEntry::BootstrapNativeCallWrapper(_Dart_NativeArguments*, void (*)(_Dart_NativeArguments*))","symbolLocation":214,"imageIndex":12},{"imageOffset":4621084324,"imageIndex":16},{"imageOffset":4724792007,"imageIndex":16},{"imageOffset":4724785560,"imageIndex":16},{"imageOffset":4724712157,"imageIndex":16},{"imageOffset":4724709407,"imageIndex":16},{"imageOffset":4724709075,"imageIndex":16},{"imageOffset":4724670222,"imageIndex":16},{"imageOffset":4724669479,"imageIndex":16},{"imageOffset":4622000241,"imageIndex":16},{"imageOffset":4621998912,"imageIndex":16},{"imageOffset":4621997203,"imageIndex":16},{"imageOffset":4621995592,"imageIndex":16},{"imageOffset":4621994581,"imageIndex":16},{"imageOffset":4724668990,"imageIndex":16},{"imageOffset":4622000241,"imageIndex":16},{"imageOffset":4621998912,"imageIndex":16},{"imageOffset":4621997203,"imageIndex":16},{"imageOffset":4724668256,"imageIndex":16},{"imageOffset":4724667528,"imageIndex":16},{"imageOffset":4724655561,"imageIndex":16},{"imageOffset":4724636841,"imageIndex":16},{"imageOffset":4724628625,"imageIndex":16},{"imageOffset":4724628141,"imageIndex":16},{"imageOffset":4622000241,"imageIndex":16},{"imageOffset":4621998912,"imageIndex":16},{"imageOffset":4621997203,"imageIndex":16},{"imageOffset":4621995592,"imageIndex":16},{"imageOffset":4621994581,"imageIndex":16},{"imageOffset":4622049780,"imageIndex":16},{"imageOffset":4622049293,"imageIndex":16},{"imageOffset":4622000241,"imageIndex":16},{"imageOffset":4621998912,"imageIndex":16},{"imageOffset":4621997203,"imageIndex":16},{"imageOffset":4621995592,"imageIndex":16},{"imageOffset":4621994581,"imageIndex":16},{"imageOffset":4622049037,"imageIndex":16},{"imageOffset":4621978680,"imageIndex":16},{"imageOffset":4621958329,"imageIndex":16},{"imageOffset":4621745791,"imageIndex":16},{"imageOffset":4621744846,"imageIndex":16},{"imageOffset":4621744633,"imageIndex":16},{"imageOffset":4621744414,"imageIndex":16},{"imageOffset":4621726648,"imageIndex":16},{"imageOffset":4621085196,"imageIndex":16},{"imageOffset":6534264,"symbol":"dart::DartEntry::InvokeCode(dart::Code const&, unsigned long, dart::Array const&, dart::Array const&, dart::Thread*)","symbolLocation":296,"imageIndex":12},{"imageOffset":6533899,"symbol":"dart::DartEntry::InvokeFunction(dart::Function const&, dart::Array const&, dart::Array const&, unsigned long)","symbolLocation":299,"imageIndex":12},{"imageOffset":6542274,"symbol":"dart::DartLibraryCalls::HandleMessage(long long, dart::Instance const&)","symbolLocation":306,"imageIndex":12},{"imageOffset":6676424,"symbol":"dart::IsolateMessageHandler::HandleMessage(std::__1::unique_ptr<dart::Message, std::__1::default_delete<dart::Message> >)","symbolLocation":872,"imageIndex":12},{"imageOffset":6844381,"symbol":"dart::MessageHandler::HandleMessages(dart::MonitorLocker*, bool, bool)","symbolLocation":301,"imageIndex":12},{"imageOffset":6845959,"symbol":"dart::MessageHandler::TaskCallback()","symbolLocation":471,"imageIndex":12},{"imageOffset":8001623,"symbol":"dart::ThreadPool::WorkerLoop(dart::ThreadPool::Worker*)","symbolLocation":343,"imageIndex":12},{"imageOffset":8002345,"symbol":"dart::ThreadPool::Worker::Main(unsigned long)","symbolLocation":121,"imageIndex":12},{"imageOffset":7466255,"symbol":"dart::ThreadStart(void*)","symbolLocation":159,"imageIndex":12},{"imageOffset":25844,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":1},{"imageOffset":8207,"symbol":"thread_start","symbolLocation":15,"imageIndex":1}]}],
  "usedImages" : [
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140735032410112,
    "size" : 225280,
    "uuid" : "c1d58a50-5a4d-3bcb-a1fc-ec0902ce34d3",
    "path" : "\/usr\/lib\/system\/libsystem_kernel.dylib",
    "name" : "libsystem_kernel.dylib"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140735032770560,
    "size" : 49152,
    "uuid" : "ee564342-d8f2-396d-b642-40092cf34d82",
    "path" : "\/usr\/lib\/system\/libsystem_pthread.dylib",
    "name" : "libsystem_pthread.dylib"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140733730832384,
    "size" : 540672,
    "uuid" : "cc1fe35f-cb2d-3d2d-87d6-c3fa0845fed0",
    "path" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/usr\/lib\/system\/libsystem_c.dylib",
    "name" : "libsystem_c.dylib"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140733732642816,
    "size" : 90112,
    "uuid" : "5debcb1f-4943-370c-a370-b609f398b840",
    "path" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/usr\/lib\/libc++abi.dylib",
    "name" : "libc++abi.dylib"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140733731840000,
    "size" : 204800,
    "uuid" : "93f5b266-3aac-3bce-ac53-eb50f1246ea9",
    "path" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/usr\/lib\/libobjc.A.dylib",
    "name" : "libobjc.A.dylib"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140733733322752,
    "CFBundleShortVersionString" : "6.9",
    "CFBundleIdentifier" : "com.apple.CoreFoundation",
    "size" : 3801088,
    "uuid" : "c6308add-135b-3a70-9b81-1ce4d994c215",
    "path" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/Frameworks\/CoreFoundation.framework\/CoreFoundation",
    "name" : "CoreFoundation",
    "CFBundleVersion" : "1856.105"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140733941620736,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.GraphicsServices",
    "size" : 36864,
    "uuid" : "adea8ae1-c723-351b-ac2e-22fd2c861c30",
    "path" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/GraphicsServices.framework\/GraphicsServices",
    "name" : "GraphicsServices",
    "CFBundleVersion" : "1.0"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140733801086976,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.UIKitCore",
    "size" : 22712320,
    "uuid" : "3ef2c381-8193-3e3c-801f-925bd1050bd7",
    "path" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/PrivateFrameworks\/UIKitCore.framework\/UIKitCore",
    "name" : "UIKitCore",
    "CFBundleVersion" : "5205.0.101"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4507533312,
    "CFBundleShortVersionString" : "1.0.0",
    "CFBundleIdentifier" : "com.example.testApp",
    "size" : 180224,
    "uuid" : "fea7567c-5c2b-36dc-8196-4343d0eb2916",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/3BD8F2FF-FDB5-4074-8C91-54F99C79156D\/data\/Containers\/Bundle\/Application\/E29E6E06-2CA3-40F8-86B9-E1EF7488EBE7\/Runner.app\/Runner",
    "name" : "Runner",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4510072832,
    "size" : 319488,
    "uuid" : "3f15c197-2d43-3490-98ff-de85f18dadf2",
    "path" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/usr\/lib\/dyld_sim",
    "name" : "dyld_sim"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4774518784,
    "size" : 442368,
    "uuid" : "7de33963-bbc5-3996-ba6e-f1d562c17c95",
    "path" : "\/usr\/lib\/dyld",
    "name" : "dyld"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140733737574400,
    "CFBundleShortVersionString" : "6.9",
    "CFBundleIdentifier" : "com.apple.Foundation",
    "size" : 2846720,
    "uuid" : "61dcc68e-1236-3624-bb6d-a3a850adf63a",
    "path" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/Frameworks\/Foundation.framework\/Foundation",
    "name" : "Foundation",
    "CFBundleVersion" : "1856.105"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 4558434304,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "io.flutter.flutter",
    "size" : 29495296,
    "uuid" : "4c4c44c7-5555-3144-a176-d2ba27691c60",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/3BD8F2FF-FDB5-4074-8C91-54F99C79156D\/data\/Containers\/Bundle\/Application\/E29E6E06-2CA3-40F8-86B9-E1EF7488EBE7\/Runner.app\/Frameworks\/Flutter.framework\/Flutter",
    "name" : "Flutter",
    "CFBundleVersion" : "1.0"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140734132293632,
    "CFBundleShortVersionString" : "258.14",
    "CFBundleIdentifier" : "com.apple.Metal",
    "size" : 925696,
    "uuid" : "f554a958-abc8-3287-8acd-e968ccb3f65e",
    "path" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/System\/Library\/Frameworks\/Metal.framework\/Metal",
    "name" : "Metal",
    "CFBundleVersion" : "258.14"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140733732818944,
    "size" : 352256,
    "uuid" : "e8cad74f-72e8-33e0-9029-03722edb18f7",
    "path" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/usr\/lib\/libc++.1.dylib",
    "name" : "libc++.1.dylib"
  },
  {
    "source" : "P",
    "arch" : "x86_64",
    "base" : 140733731667968,
    "size" : 172032,
    "uuid" : "3f6b65bb-ffbb-3e36-8772-cdd0d1b562c7",
    "path" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Library\/Developer\/CoreSimulator\/Profiles\/Runtimes\/iOS.simruntime\/Contents\/Resources\/RuntimeRoot\/usr\/lib\/system\/libsystem_malloc.dylib",
    "name" : "libsystem_malloc.dylib"
  },
  {
    "size" : 0,
    "source" : "A",
    "base" : 0,
    "uuid" : "00000000-0000-0000-0000-000000000000"
  }
],
  "sharedCache" : {
  "base" : 140733730258944,
  "size" : 3265314816,
  "uuid" : "7db4aea4-c6ef-3298-b8b5-3fd2caf4ea49"
},
  "vmSummary" : "ReadOnly portion of Libraries: Total=1.0G resident=0K(0%) swapped_out_or_unallocated=1.0G(100%)\nWritable regions: Total=749.3M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=749.3M(100%)\n\n                                VIRTUAL   REGION \nREGION TYPE                        SIZE    COUNT (non-coalesced) \n===========                     =======  ======= \nActivity Tracing                   256K        1 \nColorSync                           88K        5 \nCoreAnimation                        4K        1 \nFoundation                          16K        1 \nIOSurface                         23.5M        3 \nKernel Alloc Once                    8K        1 \nMALLOC                           219.2M       71 \nMALLOC guard page                   32K        6 \nMALLOC_NANO (reserved)           384.0M        1         reserved VM address space (unallocated)\nSTACK GUARD                       56.1M       28 \nStack                             25.2M       28 \nVM_ALLOCATE                      103.4M      253 \n__DATA                            22.7M      542 \n__DATA_CONST                      46.6M      525 \n__DATA_DIRTY                        22K       10 \n__FONT_DATA                          4K        1 \n__LINKEDIT                       533.6M       22 \n__OBJC_RO                         62.4M        1 \n__OBJC_RW                         3136K        1 \n__TEXT                           534.2M      550 \n__UNICODE                          588K        1 \ndyld private memory               2048K        2 \nmapped file                       70.0M       12 \nshared memory                       16K        1 \n===========                     =======  ======= \nTOTAL                              2.0G     2067 \nTOTAL, minus reserved VM space     1.7G     2067 \n",
  "legacyInfo" : {
  "threadTriggered" : {
    "queue" : "com.apple.main-thread"
  }
},
  "trialInfo" : {
  "rollouts" : [
    {
      "rolloutId" : "607844aa04477260f58a8077",
      "factorPackIds" : {
        "SIRI_MORPHUN_ASSETS" : "6103050cbfe6dc472e1c982a"
      },
      "deploymentId" : 240000066
    },
    {
      "rolloutId" : "602ad4dac86151000cf27e46",
      "factorPackIds" : {
        "SIRI_DICTATION_ASSETS" : "6193d03f2171a2330e561dfc"
      },
      "deploymentId" : 240000305
    },
    {
      "rolloutId" : "60da5e84ab0ca017dace9abf",
      "factorPackIds" : {

      },
      "deploymentId" : 240000008
    },
    {
      "rolloutId" : "601d9415f79519000ccd4b69",
      "factorPackIds" : {
        "SIRI_TEXT_TO_SPEECH" : "622657ce37186c771d5404ad"
      },
      "deploymentId" : 240000414
    },
    {
      "rolloutId" : "5fb4245a1bbfe8005e33a1e1",
      "factorPackIds" : {

      },
      "deploymentId" : 240000015
    },
    {
      "rolloutId" : "60186475825c62000ccf5450",
      "factorPackIds" : {

      },
      "deploymentId" : 240000026
    },
    {
      "rolloutId" : "5ffde50ce2aacd000d47a95f",
      "factorPackIds" : {

      },
      "deploymentId" : 240000184
    },
    {
      "rolloutId" : "5fc94383418129005b4e9ae0",
      "factorPackIds" : {

      },
      "deploymentId" : 240000452
    }
  ],
  "experiments" : [

  ]
}
}

Model: MacBookPro16,2, BootROM 1715.81.2.0.0 (iBridge: 19.16.10744.0.0,0), 4 processors, Quad-Core Intel Core i5, 2 GHz, 16 GB, SMC 
Graphics: Intel Iris Plus Graphics, Intel Iris Plus Graphics, Built-In
Display: Color LCD, 2560 x 1600 Retina, Main, MirrorOff, Online
Memory Module: BANK 0/ChannelA-DIMM0, 8 GB, LPDDR4X, 3733 MHz, Samsung, K4UBE3D4AA-MGCL
Memory Module: BANK 2/ChannelB-DIMM0, 8 GB, LPDDR4X, 3733 MHz, Samsung, K4UBE3D4AA-MGCL
AirPort: spairport_wireless_card_type_wifi (0x14E4, 0x7BF), wl0: Jul 12 2021 18:02:56 version 9.30.464.0.32.5.76 FWID 01-c081cfed
Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
USB Device: USB31Bus
USB Device: USB31Bus
USB Device: T2Bus
USB Device: Touch Bar Backlight
USB Device: Touch Bar Display
USB Device: Apple Internal Keyboard / Trackpad
USB Device: Headset
USB Device: Ambient Light Sensor
USB Device: FaceTime HD Camera (Built-in)
USB Device: Apple T2 Controller
Thunderbolt Bus: MacBook Pro, Apple Inc., 85.0
Thunderbolt Bus: MacBook Pro, Apple Inc., 85.0


Mainly, it throws below error:

*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Transformed points can't form a rect'
dyld4 config: DYLD_ROOT_PATH=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot
terminating with uncaught exception of type NSException

The same code works properly in previous stable version (3.0.5), compiles and launches the app as expected:

Debug service listening on ws://127.0.0.1:50184/tRsRPLBdHA8=/ws
Syncing files to device Darshan's iphone...
fopen failed for data file: errno = 2 (No such file or directory)
Errors found! Invalidating cache...
fopen failed for data file: errno = 2 (No such file or directory)
Errors found! Invalidating cache...

Screenshot 2022-09-02 at 11 10 30 AM

Changing AnimatedContainer's height to 1, doesn't throw the error on latest versions. So, the issue seems to be when we pass height as 0.

stable, master flutter doctor -v

[✓] Flutter (Channel stable, 3.3.0, on macOS 12.2.1 21D62 darwin-x64, locale
    en-GB)
    • Flutter version 3.3.0 on channel stable at
      /Users/dhs/documents/fluttersdk/flutter
    • Upstream repository https://github.com/flutter/flutter.git
    • Framework revision ffccd96b62 (29 hours ago), 2022-08-29 17:28:57 -0700
    • Engine revision 5e9e0e0aa8
    • Dart version 2.18.0
    • DevTools version 2.15.0

[!] Xcode - develop for iOS and macOS (Xcode 12.3)
    • Xcode at /Applications/Xcode.app/Contents/Developer
    ! Flutter recommends a minimum Xcode version of 13.
      Download the latest version or update via the Mac App Store.
    • CocoaPods version 1.11.2

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

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

[✓] Connected device (5 available)
    • SM G975F (mobile)       • RZ8M802WY0X • android-arm64   • Android 11 (API 30)
    • Darshan's iphone (mobile)  • 21150b119064aecc249dfcfe05e259197461ce23 •
      ios            • iOS 14.4.1 18D61
    • iPhone 12 Pro Max (mobile) • A5473606-0213-4FD8-BA16-553433949729     •
      ios            • com.apple.CoreSimulator.SimRuntime.iOS-14-3 (simulator)
    • macOS (desktop)            • macos                                    •
      darwin-x64     • Mac OS X 10.15.4 19E2269 darwin-x64
    • Chrome (web)               • chrome                                   •
      web-javascript • Google Chrome 98.0.4758.80

[✓] HTTP Host Availability
    • All required HTTP hosts are available

! Doctor found issues in 1 category.

[✓] Flutter (Channel master, 3.4.0-19.0.pre.34, on macOS 12.2.1 21D62
    darwin-x64, locale en-GB)
    • Flutter version 3.4.0-19.0.pre.34 on channel master at
      /Users/dhs/documents/fluttersdk/flutter
    • Upstream repository https://github.com/flutter/flutter.git
    • Framework revision 8853926601 (78 minutes ago), 2022-09-02 06:02:55 +0200
    • Engine revision a9ccffd0f6
    • Dart version 2.19.0 (build 2.19.0-154.0.dev)
    • DevTools version 2.16.0
    
[!] Xcode - develop for iOS and macOS (Xcode 12.3)
    • Xcode at /Applications/Xcode.app/Contents/Developer
    ! Flutter recommends a minimum Xcode version of 13.
      Download the latest version or update via the Mac App Store.
    • CocoaPods version 1.11.2

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

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

[✓] Connected device (5 available)
    • SM G975F (mobile)       • RZ8M802WY0X • android-arm64   • Android 11 (API 30)
    • Darshan's iphone (mobile)  • 21150b119064aecc249dfcfe05e259197461ce23 •
      ios            • iOS 14.4.1 18D61
    • iPhone 12 Pro Max (mobile) • A5473606-0213-4FD8-BA16-553433949729     •
      ios            • com.apple.CoreSimulator.SimRuntime.iOS-14-3 (simulator)
    • macOS (desktop)            • macos                                    •
      darwin-x64     • Mac OS X 10.15.4 19E2269 darwin-x64
    • Chrome (web)               • chrome                                   •
      web-javascript • Google Chrome 98.0.4758.80

[✓] HTTP Host Availability
    • All required HTTP hosts are available

! Doctor found issues in 1 category.



Labeling this as a regression since it works in previous stable, but not in latest.

@darshankawar darshankawar added has reproducible steps The issue has been confirmed reproducible and is ready to work on c: fatal crash Crashes that terminate the process found in release: 3.3 Found to occur in 3.3 found in release: 3.4 Found to occur in 3.4 framework flutter/packages/flutter repository. See also f: labels. f: material design flutter/packages/flutter/material repository. and removed in triage Presently being triaged by the triage team labels Sep 2, 2022
@darshankawar darshankawar changed the title [Flutter 3.3] Fatal crash when widget hight: 0 App crashes on latest versions when AnimatedContainer height is to to 0 and throws uncaught exception 'NSInternalInconsistencyException', reason: 'Transformed points can't form a rect' Sep 2, 2022
@darshankawar darshankawar changed the title App crashes on latest versions when AnimatedContainer height is to to 0 and throws uncaught exception 'NSInternalInconsistencyException', reason: 'Transformed points can't form a rect' App crashes on latest versions when AnimatedContainer height is to 0 and throws uncaught exception 'NSInternalInconsistencyException', reason: 'Transformed points can't form a rect' Sep 2, 2022
@darshankawar darshankawar added the c: regression It was better in the past than it is now label Sep 2, 2022
@darshankawar
Copy link
Member

Coming back to this issue and looking at code sample, this doesn't seem to be specific to AnimatedContainer, as the same behavior occurs using Container too. But in the code sample, a custom class is passed as a child of the Container which in turn has SizedBox with custom dimensions, ie, height: 55, width: 266. May be this conflict / mismatch of constraints of parent widget setting height to 0, but child has height: 55 could be throwing the error. Setting the same custom height: 55 in parent widget or setting height: 0 in SizedBox works as expected and doesn't crash on latest versions.

@darshankawar darshankawar changed the title App crashes on latest versions when AnimatedContainer height is to 0 and throws uncaught exception 'NSInternalInconsistencyException', reason: 'Transformed points can't form a rect' App crashes on latest versions when AnimatedContainer / Container height is to 0 and throws uncaught exception 'NSInternalInconsistencyException', reason: 'Transformed points can't form a rect' Sep 2, 2022
@darshankawar darshankawar changed the title App crashes on latest versions when AnimatedContainer / Container height is to 0 and throws uncaught exception 'NSInternalInconsistencyException', reason: 'Transformed points can't form a rect' App crashes on latest versions when AnimatedContainer / Container height is set to 0 and throws uncaught exception 'NSInternalInconsistencyException', reason: 'Transformed points can't form a rect' Sep 2, 2022
@darshankawar darshankawar added the platform-ios iOS applications specifically label Sep 2, 2022
@HansMuller HansMuller added engine flutter/engine repository. See also e: labels. and removed framework flutter/packages/flutter repository. See also f: labels. f: material design flutter/packages/flutter/material repository. labels Sep 2, 2022
@chinmaygarde
Copy link
Member

From Triage: Any updates @hangyujin?

@hangyujin
Copy link
Contributor

hangyujin commented Sep 18, 2022

Found the culprit PR is #103748 by binary search and assigning this to @dnfield

@hangyujin hangyujin assigned dnfield and unassigned hangyujin Sep 18, 2022
@dnfield dnfield added the a: accessibility Accessibility, e.g. VoiceOver or TalkBack. (aka a11y) label Sep 18, 2022
@dnfield
Copy link
Contributor

dnfield commented Sep 18, 2022

Framework is sending a zero transform:

2022-09-18 10:49:48.909129-0700 Runner[65010:5863011] Metal API Validation Enabled
2022-09-18 10:49:48.972371-0700 Runner[65010:5863224] flutter: The Dart VM service is listening on http://127.0.0.1:51763/0CHpYTaoueI=/
2022-09-18 10:49:49.410424-0700 Runner[65010:5863206] flutter: SemanticsNode#0
2022-09-18 10:49:49.410518-0700 Runner[65010:5863206] flutter:  │ Rect.fromLTRB(0.0, 0.0, 1179.0, 2556.0)
2022-09-18 10:49:49.410593-0700 Runner[65010:5863206] flutter:  │
2022-09-18 10:49:49.410725-0700 Runner[65010:5863206] flutter:  └─SemanticsNode#1
2022-09-18 10:49:49.410800-0700 Runner[65010:5863206] flutter:    │ Rect.fromLTRB(0.0, 0.0, 393.0, 852.0) scaled by 3.0x
2022-09-18 10:49:49.410869-0700 Runner[65010:5863206] flutter:    │ textDirection: ltr
2022-09-18 10:49:49.410932-0700 Runner[65010:5863206] flutter:    │
2022-09-18 10:49:49.411051-0700 Runner[65010:5863206] flutter:    └─SemanticsNode#2
2022-09-18 10:49:49.411121-0700 Runner[65010:5863206] flutter:      │ Rect.fromLTRB(0.0, 0.0, 393.0, 852.0)
2022-09-18 10:49:49.411179-0700 Runner[65010:5863206] flutter:      │ sortKey: OrdinalSortKey#9c4de(order: 0.0)
2022-09-18 10:49:49.411227-0700 Runner[65010:5863206] flutter:      │
2022-09-18 10:49:49.411279-0700 Runner[65010:5863206] flutter:      └─SemanticsNode#3
2022-09-18 10:49:49.411342-0700 Runner[65010:5863206] flutter:        │ Rect.fromLTRB(0.0, 0.0, 393.0, 852.0)
2022-09-18 10:49:49.411398-0700 Runner[65010:5863206] flutter:        │ flags: scopesRoute
2022-09-18 10:49:49.411457-0700 Runner[65010:5863206] flutter:        │
2022-09-18 10:49:49.411518-0700 Runner[65010:5863206] flutter:        ├─SemanticsNode#6
2022-09-18 10:49:49.411574-0700 Runner[65010:5863206] flutter:        │ │ Rect.fromLTRB(0.0, 0.0, 266.0, 55.0) with transform
2022-09-18 10:49:49.414002-0700 Runner[65010:5863206] flutter:        │ │ [0.0,0.0,0.0,0.0; 0.0,0.0,0.0,0.0; 0.0,0.0,0.0,0.0;
2022-09-18 10:49:49.414047-0700 Runner[65010:5863206] flutter:        │ │ 0.0,0.0,0.0,0.0]
2022-09-18 10:49:49.414093-0700 Runner[65010:5863206] flutter:        │ │ elevation: 5.0
2022-09-18 10:49:49.414150-0700 Runner[65010:5863206] flutter:        │ │
2022-09-18 10:49:49.414203-0700 Runner[65010:5863206] flutter:        │ └─SemanticsNode#7
2022-09-18 10:49:49.414251-0700 Runner[65010:5863206] flutter:        │     Rect.fromLTRB(0.0, 0.0, 266.0, 55.0)
2022-09-18 10:49:49.414306-0700 Runner[65010:5863206] flutter:        │     flags: hasImplicitScrolling
2022-09-18 10:49:49.414369-0700 Runner[65010:5863206] flutter:        │     scrollExtentMin: 0.0
2022-09-18 10:49:49.414443-0700 Runner[65010:5863206] flutter:        │     scrollPosition: 0.0
2022-09-18 10:49:49.414497-0700 Runner[65010:5863206] flutter:        │     scrollExtentMax: 0.0
2022-09-18 10:49:49.414550-0700 Runner[65010:5863206] flutter:        │
2022-09-18 10:49:49.414605-0700 Runner[65010:5863206] flutter:        ├─SemanticsNode#8
2022-09-18 10:49:49.414661-0700 Runner[65010:5863206] flutter:        │ │ Rect.fromLTRB(0.0, 0.0, 393.0, 115.0)
2022-09-18 10:49:49.414712-0700 Runner[65010:5863206] flutter:        │ │ thickness: 4.0
2022-09-18 10:49:49.414763-0700 Runner[65010:5863206] flutter:        │ │
2022-09-18 10:49:49.414838-0700 Runner[65010:5863206] flutter:        │ └─SemanticsNode#9
2022-09-18 10:49:49.414906-0700 Runner[65010:5863206] flutter:        │     Rect.fromLTRB(75.5, 75.0, 317.5, 99.0)
2022-09-18 10:49:49.414967-0700 Runner[65010:5863206] flutter:        │     flags: isHeader
2022-09-18 10:49:49.415024-0700 Runner[65010:5863206] flutter:        │     label: "Flutter Demo Home Page"
2022-09-18 10:49:49.415078-0700 Runner[65010:5863206] flutter:        │     textDirection: ltr
2022-09-18 10:49:49.415129-0700 Runner[65010:5863206] flutter:        │     elevation: 4.0
2022-09-18 10:49:49.415180-0700 Runner[65010:5863206] flutter:        │
2022-09-18 10:49:49.415249-0700 Runner[65010:5863206] flutter:        ├─SemanticsNode#4
2022-09-18 10:49:49.415307-0700 Runner[65010:5863206] flutter:        │   Rect.fromLTRB(48.0, 454.5, 345.0, 471.5)
2022-09-18 10:49:49.415367-0700 Runner[65010:5863206] flutter:        │   label: "You have pushed the button this many times:"
2022-09-18 10:49:49.415432-0700 Runner[65010:5863206] flutter:        │   textDirection: ltr
2022-09-18 10:49:49.415478-0700 Runner[65010:5863206] flutter:        │
2022-09-18 10:49:49.415533-0700 Runner[65010:5863206] flutter:        ├─SemanticsNode#5
2022-09-18 10:49:49.415583-0700 Runner[65010:5863206] flutter:        │   Rect.fromLTRB(185.5, 471.5, 207.5, 512.5)
2022-09-18 10:49:49.415633-0700 Runner[65010:5863206] flutter:        │   label: "0"
2022-09-18 10:49:49.415690-0700 Runner[65010:5863206] flutter:        │   textDirection: ltr
2022-09-18 10:49:49.415742-0700 Runner[65010:5863206] flutter:        │
2022-09-18 10:49:49.415798-0700 Runner[65010:5863206] flutter:        └─SemanticsNode#10
2022-09-18 10:49:49.415857-0700 Runner[65010:5863206] flutter:          │ merge boundary ⛔️
2022-09-18 10:49:49.415911-0700 Runner[65010:5863206] flutter:          │ Rect.fromLTRB(0.0, 0.0, 56.0, 56.0) with transform
2022-09-18 10:49:49.415964-0700 Runner[65010:5863206] flutter:          │ [1.0,2.4492935982947064e-16,0.0,321.0;
2022-09-18 10:49:49.416016-0700 Runner[65010:5863206] flutter:          │ -2.4492935982947064e-16,1.0,0.0,746.0; 0.0,0.0,1.0,0.0;
2022-09-18 10:49:49.416069-0700 Runner[65010:5863206] flutter:          │ 0.0,0.0,0.0,1.0]
2022-09-18 10:49:49.416126-0700 Runner[65010:5863206] flutter:          │ tooltip: "Increment"
2022-09-18 10:49:49.416213-0700 Runner[65010:5863206] flutter:          │ textDirection: ltr
2022-09-18 10:49:49.416275-0700 Runner[65010:5863206] flutter:          │
2022-09-18 10:49:49.416324-0700 Runner[65010:5863206] flutter:          └─SemanticsNode#11
2022-09-18 10:49:49.416374-0700 Runner[65010:5863206] flutter:              merged up ⬆️
2022-09-18 10:49:49.416433-0700 Runner[65010:5863206] flutter:              Rect.fromLTRB(0.0, 0.0, 56.0, 56.0)
2022-09-18 10:49:49.416479-0700 Runner[65010:5863206] flutter:              actions: tap
2022-09-18 10:49:49.416524-0700 Runner[65010:5863206] flutter:              flags: isButton, hasEnabledState, isEnabled, isFocusable
2022-09-18 10:49:49.416576-0700 Runner[65010:5863206] flutter:              thickness: 6.0
2022-09-18 10:49:49.416622-0700 Runner[65010:5863206] flutter:
2022-09-18 10:49:49.417792-0700 Runner[65010:5863011] *** Assertion failure in CGRect (anonymous namespace)::ConvertRectToGlobal(SemanticsObject *, CGRect)(), SemanticsObject.mm:80
2022-09-18 10:49:49.420865-0700 Runner[65010:5863011] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Transformed points can't form a rect'
*** First throw call stack:
(
	0   CoreFoundation                      0x000000018040c304 __exceptionPreprocess + 172
	1   libobjc.A.dylib                     0x000000018005131c objc_exception_throw + 56
	2   Foundation                          0x0000000180b120bc -[NSMutableDictionary(NSMutableDictionary) classForCoder] + 0
	3   Flutter                             0x0000000105327e18 _ZN12_GLOBAL__N_119ConvertRectToGlobalEP15SemanticsObject6CGRect + 688
	4   Flutter                             0x000000010532a92c -[SemanticsObject globalRect] + 192
	5   Flutter                             0x000000010532a844 -[SemanticsObject accessibilityFrame] + 236
	6   Flutter                             0x0000000105327664 -[FlutterScrollableSemanticsObject accessibilityBridgeDidFinishUpdate] + 44
	7   Flutter                             0x000000010532deb4 _ZN7flutter19AccessibilityBridge15UpdateSemanticsENSt21_LIBCPP_ABI_NAMESPACE13unordered_mapIiNS_13SemanticsNodeENS1_4hashIiEENS1_8equal_toIiEENS1_9allocatorINS1_4pairIKiS3_EEEEEENS2_IiNS_25CustomAccessibilityActionES5_S7_NS8_INS9_ISA_SE_EEEEEE + 2460
	8   Flutter                             0x00000001053370f8 _ZN7flutter15PlatformViewIOS15UpdateSemanticsENSt21_LIBCPP_ABI_NAMESPACE13unordered_mapIiNS_13SemanticsNodeENS1_4hashIiEENS1_8equal_toIiEENS1_9allocatorINS1_4pairIKiS3_EEEEEENS2_IiNS_25CustomAccessibilityActionES5_S7_NS8_INS9_ISA_SE_EEEEEE + 72
	9   Flutter                             0x000000010570dd54 _ZNSt21_LIBCPP_ABI_NAMESPACE10__function6__funcIZN7flutter5Shell23OnEngineUpdateSemanticsENS_13unordered_mapIiNS2_13SemanticsNodeENS_4hashIiEENS_8equal_toIiEENS_9allocatorINS_4pairIKiS5_EEEEEENS4_IiNS2_25CustomAccessibilityActionES7_S9_NSA_INSB_ISC_SG_EEEEEEE4$_41NSA_ISK_EEFvvEEclEv + 116
	10  Flutter                             0x000000010560dddc _ZN3fml15MessageLoopImpl10FlushTasksENS_9FlushTypeE + 152
	11  Flutter                             0x0000000105614544 _ZN3fml17MessageLoopDarwin11OnTimerFireEP16__CFRunLoopTimerPS0_ + 32
	12  CoreFoundation                      0x0000000180371720 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 28
	13  CoreFoundation                      0x00000001803713dc __CFRunLoopDoTimer + 868
	14  CoreFoundation                      0x0000000180370ac8 __CFRunLoopDoTimers + 284
	15  CoreFoundation                      0x000000018036b28c __CFRunLoopRun + 1816
	16  CoreFoundation                      0x000000018036a75c CFRunLoopRunSpecific + 584
	17  GraphicsServices                    0x0000000188f60c98 GSEventRunModal + 160
	18  UIKitCore                           0x000000010e9ccb74 -[UIApplication _run] + 868
	19  UIKitCore                           0x000000010e9d0b1c UIApplicationMain + 124
	20  Runner                              0x000000010205eff4 main + 64
	21  dyld                                0x000000010236dfa0 start_sim + 20
	22  ???                                 0x000000010209508c 0x0 + 4329132172
	23  ???                                 0xf211000000000000 0x0 + 17442722831782641664
)
libc++abi: terminating with uncaught exception of type NSException
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Transformed points can't form a rect'
terminating with uncaught exception of type NSException
CoreSimulator 857.7 - Device: iPhone 14 Pro (F8FA3344-63DC-4074-85ED-A1BA92227F1E) - Runtime: iOS 16.0 (20A360) - DeviceType: iPhone 14 Pro
(lldb) 

@dnfield
Copy link
Contributor

dnfield commented Sep 18, 2022

My change updated a render object to make sure it did not report a clip when it wasn't actually clipping anything - which means some ROs that used to cut off things because of the clip don't do that anymore when they're not actually supposed to. Some RO is trying to hide itself using a zero transform.

@dnfield
Copy link
Contributor

dnfield commented Sep 18, 2022

I think we should patch the embedding to tolerate a zero matrix.

It may make sense to also patch the framework to avoid sending some of this data to the engine.

@dnfield
Copy link
Contributor

dnfield commented Sep 18, 2022

I have a framework side fix for this, working on a test.

@dnfield
Copy link
Contributor

dnfield commented Sep 18, 2022

Note that this crash is iOS specific when a11y is enabled. On the simulator, we unconditionally enable a11y logic because we have no good way to detect whether we should or not.

@chinmaygarde
Copy link
Member

Can we also catch the case on the ObjC side so we don't run the risk of throwing the exception?

@chunhtai
Copy link
Contributor

@chinmaygarde sounds good to me to also add a safety net in iOS embedding.

@hangyujin Can you work on adding the safety net?

@dnfield
Copy link
Contributor

dnfield commented Sep 19, 2022

Yes, this should be as simple as checking if the transform is a zero transform and then fizzling as if the subtree is hidden.

@dnfield dnfield removed their assignment Sep 19, 2022
@chunhtai chunhtai added P2 Important issues not at the top of the work list and removed P2 labels Sep 21, 2022
@chunhtai
Copy link
Contributor

lower the priority since the original crash is resolved and the remaining work is nice to have

@mvaanakoskisc
Copy link

mvaanakoskisc commented Jun 20, 2024

We are seeing this crash with Flutter 3.19.3

NSInternalInconsistencyException
Transformed points can't form a rect

Flutter
+0x0386b0
(anonymous namespace)::ConvertRectToGlobal (SemanticsObject.mm:80)

Flutter
+0x0376bc
-[SemanticsObject globalRect] (SemanticsObject.mm:679)

Flutter
+0x037624
-[SemanticsObject accessibilityFrame] (SemanticsObject.mm:673)

Flutter
+0x039b24
-[FlutterScrollableSemanticsObject accessibilityBridgeDidFinishUpdate] (SemanticsObject.mm:190)

Flutter
+0x045e1c
flutter::AccessibilityBridge::UpdateSemantics (accessibility_bridge.mm:208)

Flutter
+0x045e1c
flutter::PlatformViewIOS::UpdateSemantics (platform_view_ios.mm:197)

Happens when VoiceOver is enabled and only on some devices.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
a: accessibility Accessibility, e.g. VoiceOver or TalkBack. (aka a11y) c: fatal crash Crashes that terminate the process c: regression It was better in the past than it is now engine flutter/engine repository. See also e: labels. found in release: 3.3 Found to occur in 3.3 found in release: 3.4 Found to occur in 3.4 has reproducible steps The issue has been confirmed reproducible and is ready to work on P2 Important issues not at the top of the work list platform-ios iOS applications specifically team-ios Owned by iOS platform team triaged-ios Triaged by iOS platform team
Projects
None yet
Development

No branches or pull requests

10 participants