skip to Main Content

Ios swift – iOS GameCenter crash in private API `GKNotificationBannerViewController::hideBannerQuickly`

I found this crash log in Firebase: Crashed: com.apple.main-thread 0 libdispatch.dylib 0x4b20 dispatch_semaphore_signal + 8 1 GameCenterUI 0x9ebd8 __56-[GKNotificationBannerViewController hideBannerQuickly:]_block_invoke_2 + 40 2 libdispatch.dylib 0x3f88 _dispatch_client_callout + 20 3 libdispatch.dylib 0x7418 _dispatch_continuation_pop + 504 4 libdispatch.dylib 0x1aa58 _dispatch_source_invoke + 1588…

VIEW QUESTION

Flutter – ListView wrapped by Listener

Listener( onPointerUp: (event) { LogUtil.v('++++++onPointerUp++++'); }, child: ListView.builder( itemCount:10, itemBuilder:(context, index) { return GestureDetector( onTap:() { LogUtil.v('++++++GestureDetector++++'); }, child:Container( height:200 ) ) } )) When I click listview item, print '++++++GestureDetector++++' ,'++++++onPointerUp++++' also printed. How can I make '++++++onPointerUp++++' not…

VIEW QUESTION
Back To Top
Search