[go: nahoru, domu]

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

DropdownButton exception when selectedItemBuilder and hint are used together #51922

Closed
varunkamani opened this issue Mar 4, 2020 · 9 comments
Labels
c: crash Stack traces logged to the console f: material design flutter/packages/flutter/material repository. framework flutter/packages/flutter repository. See also f: labels.

Comments

@varunkamani
Copy link
varunkamani commented Mar 4, 2020

For DropdownButtons, specifying both a 'selectedItemBuilder' and 'hint' at the same time causes an exception:

Error message:


═══════ Exception caught by widgets library ═══════════════════════════════════
The following assertion was thrown building DropdownButton<String>(dirty, dependencies: [MediaQuery, _InheritedTheme, _LocalizationsScope-[GlobalKey#78cfa], Directionality], state: _DropdownButtonState<String>#9067b):
type 'DefaultTextStyle' is not a subtype of type 'Center' of 'value'


Either the assertion indicates an error in the framework itself, or we should provide substantially more information in this error message to help you determine and fix the underlying cause.
In either case, please report this assertion by filing a bug on GitHub:
  https://github.com/flutter/flutter/issues/new?template=BUG.md

The relevant error-causing widget was
    DropdownButton<String> 
lib/views/pill_identifier.dart:89
When the exception was thrown, this was the stack
#0      List.add (dart:core-patch/growable_array.dart)
#1      _DropdownButtonState.build 
package:flutter/…/material/dropdown.dart:1276
#2      StatefulElement.build 
package:flutter/…/widgets/framework.dart:4334
#3      ComponentElement.performRebuild 
package:flutter/…/widgets/framework.dart:4223
Launching lib/main.dart on AOSP on IA Emulator in debug mode...
✓ Built build/app/outputs/apk/debug/app-debug.apk.
D/FlutterActivity( 9542): Using the launch theme as normal theme.
D/FlutterActivityAndFragmentDelegate( 9542): Setting up FlutterEngine.
D/FlutterActivityAndFragmentDelegate( 9542): No preferred FlutterEngine was provided. Creating a new FlutterEngine for this FlutterFragment.
W/FlutterEngine( 9542): Tried to automatically register plugins with FlutterEngine (io.flutter.embedding.engine.FlutterEngine@7045658) but could not find and invoke the GeneratedPluginRegistrant.
D/FlutterActivityAndFragmentDelegate( 9542): Attaching FlutterEngine to the Activity that owns this Fragment.
D/FlutterView( 9542): Attaching to a FlutterEngine: io.flutter.embedding.engine.FlutterEngine@7045658
D/FlutterActivityAndFragmentDelegate( 9542): Executing Dart entrypoint: main, and sending initial route: /
D/EGL_emulation( 9542): eglMakeCurrent: 0xe9f05660: ver 3 0 (tinfo 0xd1ff19b0)
#4      Element.rebuild 
package:flutter/…/widgets/framework.dart:3947

════════════════════════════════════════════════════════════════════════════════

Test Code :

DropdownButton<String>(
              focusNode: _shapeFocusNode,
              hint: Center(
                    child: Container(
                      decoration: BoxDecoration(
                        
                        color: Color(0xffF4F4F4),
                      ),
                     
                      child: Row(
                        mainAxisAlignment: MainAxisAlignment.spaceBetween,
                        children: <Widget>[
                          Text(
                            'Select shape',
                            style:
                                Theme.of(context).textTheme.display2.copyWith(
                                    //color: Colors.white,
                                    ),
                          ),
                          Icon(
                            Icons.expand_more,
                            color: Theme.of(context).buttonColor,
                          )
                        ],
                      ),
                    ),
                  ),
              value: _selectedShape,
              items: Constants.shapes.map((value) {
                return DropdownMenuItem<String>(
                  value: value,
                  child: Text(value),
                );
              }).toList(),
              onChanged: (value) {
                setState(() {
                  _selectedShape = value;
                });
              },
              underline: Container(),
              isExpanded: true,
              selectedItemBuilder: (context) {
                return Constants.shapes.map((value) {
                  return Center(
                    child: Container(
                      decoration: BoxDecoration(
                        borderRadius: BorderRadius.all(Radius.circular(
                          23,
                        )),
                        color: Color(0xffF4F4F4),
                      ),
                      
                      child: Row(
                        mainAxisAlignment: MainAxisAlignment.spaceBetween,
                        children: <Widget>[
                          Text(
                            value,
                            style:
                                Theme.of(context).textTheme.display2.copyWith(
                                    //color: Colors.white,
                                    ),
                          ),
                          Icon(
                            Icons.expand_more,
                            color: Theme.of(context).buttonColor,
                          )
                        ],
                      ),
                    ),
                  );
                }).toList();
              },
              iconSize: 0,
            ),
@TahaTesser
Copy link
Member
TahaTesser commented Mar 4, 2020

Hi @varunkamani
can you please provide your flutter doctor -v ?
Also, your code sample is incomplete, to better address the issue, would be helpful if you could post a minimal code sample to reproduce the problem
Thank you

@TahaTesser TahaTesser added the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Mar 4, 2020
@varunkamani
Copy link
Author
varunkamani commented Mar 4, 2020

Test code:

import 'package:flutter/material.dart';

class Test extends StatefulWidget {
  @override
  _TestState createState() => _TestState();
}

class _TestState extends State<Test> {
  String _selectedColor;
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Container(
        padding: EdgeInsets.only(top: 200),
        child: DropdownButton<String>(
          value: _selectedColor,
          items: ['red', 'green', 'yellow'].map((value) {
            return DropdownMenuItem<String>(
              value: value,
              child: Text(value),
            );
          }).toList(),
          onChanged: (value) {
            setState(() {
              _selectedColor = value;
            });
          },
          isExpanded: true,
          hint: Text('Select Shape'),
          selectedItemBuilder: (context) {
            return ['red', 'green', 'yellow'].map((value) {
              return Text(value);
            }).toList();
          },
        ),
      ),
    );
  }
}

baps@bapss-MacBook-Pro ume % flutter doctor -v
[✓] Flutter (Channel stable, v1.12.13+hotfix.8, on Mac OS X 10.15.3 19D76, locale en-IN)
• Flutter version 1.12.13+hotfix.8 at /Users/baps/Documents/development/flutter
• Framework revision 0b8abb4 (3 weeks ago), 2020-02-11 11:44:36 -0800
• Engine revision e1e6ced
• Dart version 2.7.0

[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.3)
• Android SDK at /Users/baps/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-29, build-tools 29.0.3
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
• All Android licenses accepted.

[✓] Xcode - develop for iOS and macOS (Xcode 11.3.1)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 11.3.1, Build version 11C504
• CocoaPods version 1.8.4

[!] Android Studio (version 3.5)
• Android Studio at /Applications/Android Studio.app/Contents
✗ Flutter plugin not installed; this adds Flutter specific functionality.
✗ Dart plugin not installed; this adds Dart specific functionality.
• Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)

[✓] Connected device (1 available)
• AOSP on IA Emulator • emulator-5554 • android-x86 • Android 9 (API 28) (emulator)

! Doctor found issues in 1 category.

baps@bapss-MacBook-Pro ume % flutter run --verbose

Logs
[  +25 ms] executing: [/Users/baps/Documents/development/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H
[  +32 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
[        ] 0b8abb4724aa590dd0f429683339b1e045a1594d
[        ] executing: [/Users/baps/Documents/development/flutter/] git describe --match v*.*.* --first-parent --long --tags
[   +7 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[        ] v1.12.13+hotfix.8-0-g0b8abb472
[   +8 ms] executing: [/Users/baps/Documents/development/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[   +5 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[        ] origin/stable
[        ] executing: [/Users/baps/Documents/development/flutter/] git ls-remote --get-url origin
[   +4 ms] Exit code 0 from: git ls-remote --get-url origin
[        ] https://github.com/flutter/flutter.git
[  +49 ms] executing: [/Users/baps/Documents/development/flutter/] git rev-parse --abbrev-ref HEAD
[   +5 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[        ] stable
[   +5 ms] executing: sw_vers -productName
[  +14 ms] Exit code 0 from: sw_vers -productName
[        ] Mac OS X
[        ] executing: sw_vers -productVersion
[  +13 ms] Exit code 0 from: sw_vers -productVersion
[        ] 10.15.3
[        ] executing: sw_vers -buildVersion
[  +13 ms] Exit code 0 from: sw_vers -buildVersion
[        ] 19D76
[  +26 ms] executing: /usr/bin/xcode-select --print-path
[   +9 ms] Exit code 0 from: /usr/bin/xcode-select --print-path
[        ] /Applications/Xcode.app/Contents/Developer
[   +1 ms] executing: /usr/bin/xcodebuild -version
[ +763 ms] Exit code 0 from: /usr/bin/xcodebuild -version
[   +3 ms] Xcode 11.3.1
           Build version 11C504
[  +60 ms] executing: /Users/baps/Library/Android/sdk/platform-tools/adb devices -l
[   +6 ms] Exit code 0 from: /Users/baps/Library/Android/sdk/platform-tools/adb devices -l
[        ] List of devices attached
           emulator-5554          device product:sdk_gphone_x86_arm model:AOSP_on_IA_Emulator device:generic_x86_arm transport_id:18
[  +18 ms] executing: /Users/baps/Documents/development/flutter/bin/cache/artifacts/libimobiledevice/idevice_id -h
[  +56 ms] /usr/bin/xcrun simctl list --json devices
[ +102 ms] /Users/baps/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell getprop
[  +46 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
[   +3 ms] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[   +2 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[  +64 ms] Found plugin speech_recognition at /Users/baps/Documents/development/flutter/.pub-cache/hosted/pub.dartlang.org/speech_recognition-0.3.0+1/
[  +59 ms] Found plugin speech_recognition at /Users/baps/Documents/development/flutter/.pub-cache/hosted/pub.dartlang.org/speech_recognition-0.3.0+1/
[  +48 ms] Generating /Users/baps/Documents/UME/ume/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java
[  +44 ms] ro.hardware = ranchu
⣽[  +15 ms] executing: [/Users/baps/Documents/UME/ume/ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/baps/Documents/UME/ume/ios/Runner.xcodeproj -target Runner -showBuildSettings
[        ] executing: [/Users/baps/Documents/UME/ume/ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/baps/Documents/UME/ume/ios/Runner.xcodeproj -target Runner -showBuildSettings
 
(This is taking an unexpectedly long time.)⣾[+2379 ms] Build settings for action build and target Runner:
                        ACTION = build
                        AD_HOC_CODE_SIGNING_ALLOWED = NO
                        ALTERNATE_GROUP = staff
                        ALTERNATE_MODE = u+w,go-w,a+rX
                        ALTERNATE_OWNER = baps
                        ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
                        ALWAYS_SEARCH_USER_PATHS = NO
                        ALWAYS_USE_SEPARATE_HEADERMAPS = NO
                        APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
                        APPLE_INTERNAL_DIR = /AppleInternal
                        APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
                        APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
                        APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
                        APPLICATION_EXTENSION_API_ONLY = NO
                        APPLY_RULES_IN_COPY_FILES = NO
                        APPLY_RULES_IN_COPY_HEADERS = NO
                        ARCHS = armv7 arm64
                        ARCHS_STANDARD = armv7 arm64
                        ARCHS_STANDARD_32_64_BIT = armv7 arm64
                        ARCHS_STANDARD_32_BIT = armv7
                        ARCHS_STANDARD_64_BIT = arm64
                        ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64
                        ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64
                        ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
                        AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
                        BITCODE_GENERATION_MODE = marker
                        BUILD_ACTIVE_RESOURCES_ONLY = NO
                        BUILD_COMPONENTS = headers build
                        BUILD_DIR = /Users/baps/Documents/UME/ume/build/ios
                        BUILD_LIBRARY_FOR_DISTRIBUTION = NO
                        BUILD_ROOT = /Users/baps/Documents/UME/ume/build/ios
                        BUILD_STYLE = 
                        BUILD_VARIANTS = normal
                        BUILT_PRODUCTS_DIR = /Users/baps/Documents/UME/ume/build/ios/Release-iphoneos
                        CACHE_ROOT = /var/folders/63/xgjcl4191fn774pnflxh193c0000gn/C/com.apple.DeveloperTools/11.3.1-11C504/Xcode
                        CCHROOT = /var/folders/63/xgjcl4191fn774pnflxh193c0000gn/C/com.apple.DeveloperTools/11.3.1-11C504/Xcode
                        CHMOD = /bin/chmod
                        CHOWN = /usr/sbin/chown
                        CLANG_ANALYZER_NONNULL = YES
                        CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
                        CLANG_CXX_LIBRARY = libc++
                        CLANG_ENABLE_MODULES = YES
                        CLANG_ENABLE_OBJC_ARC = YES
                        CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
                        CLANG_WARN_BOOL_CONVERSION = YES
                        CLANG_WARN_COMMA = YES
                        CLANG_WARN_CONSTANT_CONVERSION = YES
                        CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES
                        CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
                        CLANG_WARN_EMPTY_BODY = YES
                        CLANG_WARN_ENUM_CONVERSION = YES
                        CLANG_WARN_INFINITE_RECURSION = YES
                        CLANG_WARN_INT_CONVERSION = YES
                        CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
                        CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES
                        CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
                        CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
                        CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
                        CLANG_WARN_STRICT_PROTOTYPES = YES
                        CLANG_WARN_SUSPICIOUS_MOVE = YES
                        CLANG_WARN_UNREACHABLE_CODE = YES
                        CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
                        CLASS_FILE_DIR = /Users/baps/Documents/UME/ume/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses
                        CLEAN_PRECOMPS = YES
                        CLONE_HEADERS = NO
                        CODESIGNING_FOLDER_PATH = /Users/baps/Documents/UME/ume/build/ios/Release-iphoneos/Runner.app
                        CODE_SIGNING_ALLOWED = YES
                        CODE_SIGNING_REQUIRED = YES
                        CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext
                        CODE_SIGN_IDENTITY = iPhone Developer
                        CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
                        COLOR_DIAGNOSTICS = NO
                        COMBINE_HIDPI_IMAGES = NO
                        COMPILER_INDEX_STORE_ENABLE = Default
                        COMPOSITE_SDK_DIRS = /Users/baps/Documents/UME/ume/build/ios/CompositeSDKs
                        COMPRESS_PNG_FILES = YES
                        CONFIGURATION = Release
                        CONFIGURATION_BUILD_DIR = /Users/baps/Documents/UME/ume/build/ios/Release-iphoneos
                        CONFIGURATION_TEMP_DIR = /Users/baps/Documents/UME/ume/build/ios/Runner.build/Release-iphoneos
                        CONTENTS_FOLDER_PATH = Runner.app
                        COPYING_PRESERVES_HFS_DATA = NO
                        COPY_HEADERS_RUN_UNIFDEF = NO
                        COPY_PHASE_STRIP = NO
                        COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
                        CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
                        CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator
                        CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk
                        CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator13.2
                        CP = /bin/cp
                        CREATE_INFOPLIST_SECTION_IN_BINARY = NO
                        CURRENT_ARCH = arm64
                        CURRENT_PROJECT_VERSION = 1
                        CURRENT_VARIANT = normal
                        DEAD_CODE_STRIPPING = YES
                        DEBUGGING_SYMBOLS = YES
                        DEBUG_INFORMATION_FORMAT = dwarf-with-dsym
                        DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
                        DEFAULT_DEXT_INSTALL_PATH = /System/Library/DriverExtensions
                        DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
                        DEFINES_MODULE = NO
                        DEPLOYMENT_LOCATION = NO
                        DEPLOYMENT_POSTPROCESSING = NO
                        DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
                        DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min
                        DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min=
                        DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
                        DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_version_min
                        DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
                        DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0 12.1 12.2 12.3 12.4 13.0 13.1 13.2
                        DERIVED_FILES_DIR = /Users/baps/Documents/UME/ume/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
                        DERIVED_FILE_DIR = /Users/baps/Documents/UME/ume/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
                        DERIVED_SOURCES_DIR = /Users/baps/Documents/UME/ume/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
                        DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
                        DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
                        DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
                        DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
                        DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
                        DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
                        DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
                        DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
                        DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
                        DEVELOPMENT_LANGUAGE = en
                        DOCUMENTATION_FOLDER_PATH = Runner.app/en.lproj/Documentation
                        DONT_GENERATE_INFOPLIST_FILE = NO
                        DO_HEADER_SCANNING_IN_JAM = NO
                        DSTROOT = /tmp/Runner.dst
                        DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
                        DWARF_DSYM_FILE_NAME = Runner.app.dSYM
                        DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
                        DWARF_DSYM_FOLDER_PATH = /Users/baps/Documents/UME/ume/build/ios/Release-iphoneos
                        EFFECTIVE_PLATFORM_NAME = -iphoneos
                        EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
                        EMBEDDED_PROFILE_NAME = embedded.mobileprovision
                        EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
                        ENABLE_BITCODE = NO
                        ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
                        ENABLE_HARDENED_RUNTIME = NO
                        ENABLE_HEADER_DEPENDENCIES = YES
                        ENABLE_NS_ASSERTIONS = NO
                        ENABLE_ON_DEMAND_RESOURCES = YES
                        ENABLE_STRICT_OBJC_MSGSEND = YES
                        ENABLE_TESTABILITY = NO
                        ENTITLEMENTS_ALLOWED = YES
                        ENTITLEMENTS_DESTINATION = Signature
                        ENTITLEMENTS_REQUIRED = YES
                        EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
                        EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
                        EXECUTABLES_FOLDER_PATH = Runner.app/Executables
                        EXECUTABLE_FOLDER_PATH = Runner.app
                        EXECUTABLE_NAME = Runner
                        EXECUTABLE_PATH = Runner.app/Runner
                        EXPANDED_CODE_SIGN_IDENTITY = 
                        EXPANDED_CODE_SIGN_IDENTITY_NAME = 
                        EXPANDED_PROVISIONING_PROFILE = 
                        FILE_LIST = /Users/baps/Documents/UME/ume/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList
                        FIXED_FILES_DIR = /Users/baps/Documents/UME/ume/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles
                        FLUTTER_APPLICATION_PATH = /Users/baps/Documents/UME/ume
                        FLUTTER_BUILD_DIR = build
                        FLUTTER_BUILD_NAME = 1.0.0
                        FLUTTER_BUILD_NUMBER = 1
                        FLUTTER_FRAMEWORK_DIR = /Users/baps/Documents/development/flutter/bin/cache/artifacts/engine/ios
                        FLUTTER_ROOT = /Users/baps/Documents/development/flutter
                        FLUTTER_TARGET = lib/main.dart
                        FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
                        FRAMEWORK_FLAG_PREFIX = -framework
                        FRAMEWORK_SEARCH_PATHS =  /Users/baps/Documents/UME/ume/ios/Flutter
                        FRAMEWORK_VERSION = A
                        FULL_PRODUCT_NAME = Runner.app
                        GCC3_VERSION = 3.3
                        GCC_C_LANGUAGE_STANDARD = gnu99
                        GCC_INLINES_ARE_PRIVATE_EXTERN = YES
                        GCC_NO_COMMON_BLOCKS = YES
                        GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
                        GCC_SYMBOLS_PRIVATE_EXTERN = YES
                        GCC_THUMB_SUPPORT = YES
                        GCC_TREAT_WARNINGS_AS_ERRORS = NO
                        GCC_VERSION = com.apple.compilers.llvm.clang.1_0
                        GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
                        GCC_WARN_64_TO_32_BIT_CONVERSION = YES
                        GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
                        GCC_WARN_UNDECLARED_SELECTOR = YES
                        GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
                        GCC_WARN_UNUSED_FUNCTION = YES
                        GCC_WARN_UNUSED_VARIABLE = YES
                        GENERATE_MASTER_OBJECT_FILE = NO
                        GENERATE_PKGINFO_FILE = YES
                        GENERATE_PROFILING_CODE = NO
                        GENERATE_TEXT_BASED_STUBS = NO
                        GID = 20
                        GROUP = staff
                        HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
                        HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
                        HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
                        HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
                        HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
                        HEADERMAP_USES_VFS = NO
                        HIDE_BITCODE_SYMBOLS = YES
                        HOME = /Users/baps
                        ICONV = /usr/bin/iconv
                        INFOPLIST_EXPAND_BUILD_SETTINGS = YES
                        INFOPLIST_FILE = Runner/Info.plist
                        INFOPLIST_OUTPUT_FORMAT = binary
                        INFOPLIST_PATH = Runner.app/Info.plist
                        INFOPLIST_PREPROCESS = NO
                        INFOSTRINGS_PATH = Runner.app/en.lproj/InfoPlist.strings
                        INLINE_PRIVATE_FRAMEWORKS = NO
                        INSTALLHDRS_COPY_PHASE = NO
                        INSTALLHDRS_SCRIPT_PHASE = NO
                        INSTALL_DIR = /tmp/Runner.dst/Applications
                        INSTALL_GROUP = staff
                        INSTALL_MODE_FLAG = u+w,go-w,a+rX
                        INSTALL_OWNER = baps
                        INSTALL_PATH = /Applications
                        INSTALL_ROOT = /tmp/Runner.dst
                        IPHONEOS_DEPLOYMENT_TARGET = 8.0
                        JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
                        JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
                        JAVA_ARCHIVE_CLASSES = YES
                        JAVA_ARCHIVE_TYPE = JAR
                        JAVA_COMPILER = /usr/bin/javac
                        JAVA_FOLDER_PATH = Runner.app/Java
                        JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
                        JAVA_JAR_FLAGS = cv
                        JAVA_SOURCE_SUBDIR = .
                        JAVA_USE_DEPENDENCIES = YES
                        JAVA_ZIP_FLAGS = -urg
                        JIKES_DEFAULT_FLAGS = +E +OLDCSO
                        KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow
                        KEEP_PRIVATE_EXTERNS = NO
                        LD_DEPENDENCY_INFO_FILE = /Users/baps/Documents/UME/ume/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat
                        LD_GENERATE_MAP_FILE = NO
                        LD_MAP_FILE_PATH = /Users/baps/Documents/UME/ume/build/ios/Runner.build/Release-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt
                        LD_NO_PIE = NO
                        LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
                        LD_RUNPATH_SEARCH_PATHS =  @executable_path/Frameworks
                        LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
                        LEX = lex
                        LIBRARY_DEXT_INSTALL_PATH = /Library/DriverExtensions
                        LIBRARY_FLAG_NOSPACE = YES
                        LIBRARY_FLAG_PREFIX = -l
                        LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
                        LIBRARY_SEARCH_PATHS =  /Users/baps/Documents/UME/ume/ios/Flutter
                        LINKER_DISPLAYS_MANGLED_NAMES = NO
                        LINK_FILE_LIST_normal_arm64 = 
                        LINK_FILE_LIST_normal_armv7 = 
                        LINK_WITH_STANDARD_LIBRARIES = YES
                        LLVM_TARGET_TRIPLE_OS_VERSION = ios8.0
                        LLVM_TARGET_TRIPLE_VENDOR = apple
                        LOCALIZABLE_CONTENT_DIR = 
                        LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/en.lproj
                        LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFCopyLocalizedString
                        LOCALIZED_STRING_SWIFTUI_SUPPORT = YES
                        LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
                        LOCAL_APPS_DIR = /Applications
                        LOCAL_DEVELOPER_DIR = /Library/Developer
                        LOCAL_LIBRARY_DIR = /Library
                        LOCROOT = 
                        LOCSYMROOT = 
                        MACH_O_TYPE = mh_execute
                        MAC_OS_X_PRODUCT_BUILD_VERSION = 19D76
                        MAC_OS_X_VERSION_ACTUAL = 101503
                        MAC_OS_X_VERSION_MAJOR = 101500
                        MAC_OS_X_VERSION_MINOR = 1503
                        METAL_LIBRARY_FILE_BASE = default
                        METAL_LIBRARY_OUTPUT_DIR = /Users/baps/Documents/UME/ume/build/ios/Release-iphoneos/Runner.app
                        MODULES_FOLDER_PATH = Runner.app/Modules
                        MODULE_CACHE_DIR = /Users/baps/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
                        MTL_ENABLE_DEBUG_INFO = NO
                        NATIVE_ARCH = armv7
                        NATIVE_ARCH_32_BIT = i386
                        NATIVE_ARCH_64_BIT = x86_64
                        NATIVE_ARCH_ACTUAL = x86_64
                        NO_COMMON = YES
                        OBJECT_FILE_DIR = /Users/baps/Documents/UME/ume/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects
                        OBJECT_FILE_DIR_normal = /Users/baps/Documents/UME/ume/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal
                        OBJROOT = /Users/baps/Documents/UME/ume/build/ios
                        ONLY_ACTIVE_ARCH = NO
                        OS = MACOS
                        OSAC = /usr/bin/osacompile
                        PACKAGE_TYPE = com.apple.package-type.wrapper.application
                        PASCAL_STRINGS = YES
                        PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/opt/local/bin:/opt/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/baps/Documents/development/flutter/bin
                        PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks
                        /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms
                        PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
                        PFE_FILE_C_DIALECTS = objective-c
                        PKGINFO_FILE_PATH = /Users/baps/Documents/UME/ume/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo
                        PKGINFO_PATH = Runner.app/PkgInfo
                        PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
                        PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
                        PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
                        PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
                        PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
                        PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
                        PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
                        PLATFORM_DISPLAY_NAME = iOS
                        PLATFORM_NAME = iphoneos
                        PLATFORM_PREFERRED_ARCH = arm64
                        PLATFORM_PRODUCT_BUILD_VERSION = 17B102
                        PLIST_FILE_OUTPUT_FORMAT = binary
                        PLUGINS_FOLDER_PATH = Runner.app/PlugIns
                        PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
                        PRECOMP_DESTINATION_DIR = /Users/baps/Documents/UME/ume/build/ios/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders
                        PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
                        PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
                        PRODUCT_BUNDLE_IDENTIFIER = com.example.ume
                        PRODUCT_BUNDLE_PACKAGE_TYPE = APPL
                        PRODUCT_MODULE_NAME = Runner
                        PRODUCT_NAME = Runner
                        PRODUCT_SETTINGS_PATH = /Users/baps/Documents/UME/ume/ios/Runner/Info.plist
                        PRODUCT_TYPE = com.apple.product-type.application
                        PROFILING_CODE = NO
                        PROJECT = Runner
                        PROJECT_DERIVED_FILE_DIR = /Users/baps/Documents/UME/ume/build/ios/Runner.build/DerivedSources
                        PROJECT_DIR = /Users/baps/Documents/UME/ume/ios
                        PROJECT_FILE_PATH = /Users/baps/Documents/UME/ume/ios/Runner.xcodeproj
                        PROJECT_NAME = Runner
                        PROJECT_TEMP_DIR = /Users/baps/Documents/UME/ume/build/ios/Runner.build
                        PROJECT_TEMP_ROOT = /Users/baps/Documents/UME/ume/build/ios
                        PROVISIONING_PROFILE_REQUIRED = YES
                        PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
                        RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
                        REMOVE_CVS_FROM_RESOURCES = YES
                        REMOVE_GIT_FROM_RESOURCES = YES
                        REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
                        REMOVE_HG_FROM_RESOURCES = YES
                        REMOVE_SVN_FROM_RESOURCES = YES
                        RESOURCE_RULES_REQUIRED = YES
                        REZ_COLLECTOR_DIR = /Users/baps/Documents/UME/ume/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources
                        REZ_OBJECTS_DIR = /Users/baps/Documents/UME/ume/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources/Objects
                        SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
                        SCRIPTS_FOLDER_PATH = Runner.app/Scripts
                        SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk
                        SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk
                        SDK_DIR_iphoneos13_2 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk
                        SDK_NAME = iphoneos13.2
                        SDK_NAMES = iphoneos13.2
                        SDK_PRODUCT_BUILD_VERSION = 17B102
                        SDK_VERSION = 13.2
                        SDK_VERSION_ACTUAL = 130200
                        SDK_VERSION_MAJOR = 130000
                        SDK_VERSION_MINOR = 200
                        SED = /usr/bin/sed
                        SEPARATE_STRIP = NO
                        SEPARATE_SYMBOL_EDIT = NO
                        SET_DIR_MODE_OWNER_GROUP = YES
                        SET_FILE_MODE_OWNER_GROUP = NO
                        SHALLOW_BUNDLE = YES
                        SHARED_DERIVED_FILE_DIR = /Users/baps/Documents/UME/ume/build/ios/Release-iphoneos/DerivedSources
                        SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
                        SHARED_PRECOMPS_DIR = /Users/baps/Documents/UME/ume/build/ios/SharedPrecompiledHeaders
                        SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
                        SKIP_INSTALL = NO
                        SOURCE_ROOT = /Users/baps/Documents/UME/ume/ios
                        SRCROOT = /Users/baps/Documents/UME/ume/ios
                        STRINGS_FILE_OUTPUT_ENCODING = binary
                        STRIP_BITCODE_FROM_COPIED_FILES = YES
                        STRIP_INSTALLED_PRODUCT = YES
                        STRIP_STYLE = all
                        STRIP_SWIFT_SYMBOLS = YES
                        SUPPORTED_DEVICE_FAMILIES = 1,2
                        SUPPORTED_PLATFORMS = iphoneos
                        SUPPORTS_MACCATALYST = NO
                        SUPPORTS_TEXT_BASED_API = NO
                        SWIFT_COMPILATION_MODE = wholemodule
                        SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
                        SWIFT_OPTIMIZATION_LEVEL = -O
                        SWIFT_PLATFORM_TARGET_PREFIX = ios
                        SWIFT_VERSION = 5.0
                        SYMROOT = /Users/baps/Documents/UME/ume/build/ios
                        SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
                        SYSTEM_APPS_DIR = /Applications
                        SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
                        SYSTEM_DEMOS_DIR = /Applications/Extras
                        SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
                        SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
                        SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
                        SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
                        SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
                        SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
                        SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
                        SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
                        SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
                        SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
                        SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
                        SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
                        SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
                        SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
                        SYSTEM_DEXT_INSTALL_PATH = /System/Library/DriverExtensions
                        SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
                        SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
                        SYSTEM_LIBRARY_DIR = /System/Library
                        TAPI_VERIFY_MODE = ErrorsOnly
                        TARGETED_DEVICE_FAMILY = 1,2
                        TARGETNAME = Runner
                        TARGET_BUILD_DIR = /Users/baps/Documents/UME/ume/build/ios/Release-iphoneos
                        TARGET_NAME = Runner
                        TARGET_TEMP_DIR = /Users/baps/Documents/UME/ume/build/ios/Runner.build/Release-iphoneos/Runner.build
                        TEMP_DIR = /Users/baps/Documents/UME/ume/build/ios/Runner.build/Release-iphoneos/Runner.build
                        TEMP_FILES_DIR = /Users/baps/Documents/UME/ume/build/ios/Runner.build/Release-iphoneos/Runner.build
                        TEMP_FILE_DIR = /Users/baps/Documents/UME/ume/build/ios/Runner.build/Release-iphoneos/Runner.build
                        TEMP_ROOT = /Users/baps/Documents/UME/ume/build/ios
                        TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
                        TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
                        UID = 501
                        UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
                        UNSTRIPPED_PRODUCT = NO
                        USER = baps
                        USER_APPS_DIR = /Users/baps/Applications
                        USER_LIBRARY_DIR = /Users/baps/Library
                        USE_DYNAMIC_NO_PIC = YES
                        USE_HEADERMAP = YES
                        USE_HEADER_SYMLINKS = NO
                        USE_LLVM_TARGET_TRIPLES = YES
                        USE_LLVM_TARGET_TRIPLES_FOR_CLANG = YES
                        USE_LLVM_TARGET_TRIPLES_FOR_LD = YES
                        USE_LLVM_TARGET_TRIPLES_FOR_TAPI = YES
                        VALIDATE_PRODUCT = YES
                        VALIDATE_WORKSPACE = NO
                        VALID_ARCHS = arm64 arm64e armv7 armv7s
                        VERBOSE_PBXCP = NO
                        VERSIONING_SYSTEM = apple-generic
                        VERSIONPLIST_PATH = Runner.app/version.plist
                        VERSION_INFO_BUILDER = baps
                        VERSION_INFO_FILE = Runner_vers.c
                        VERSION_INFO_STRING = "@(#)PROGRAM:Runner  PROJECT:Runner-1"
                        WRAPPER_EXTENSION = app
                        WRAPPER_NAME = Runner.app
                        WRAPPER_SUFFIX = .app
                        WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO
                        XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode
                        XCODE_PRODUCT_BUILD_VERSION = 11C504
                        XCODE_VERSION_ACTUAL = 1131
                        XCODE_VERSION_MAJOR = 1100
                        XCODE_VERSION_MINOR = 1130
                        XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
                        YACC = yacc
                        arch = arm64
                        variant = normal
[  +47 ms] Using hardware rendering with device AOSP on IA Emulator. If you get graphics artifacts, consider enabling software rendering with "--enable-software-rendering".
[  +17 ms] Launching lib/main.dart on AOSP on IA Emulator in debug mode...
[   +8 ms] executing: /Users/baps/Library/Android/sdk/build-tools/29.0.3/aapt dump xmltree /Users/baps/Documents/UME/ume/build/app/outputs/apk/app.apk AndroidManifest.xml
[   +9 ms] Exit code 0 from: /Users/baps/Library/Android/sdk/build-tools/29.0.3/aapt dump xmltree /Users/baps/Documents/UME/ume/build/app/outputs/apk/app.apk AndroidManifest.xml
[        ] N: android=http://schemas.android.com/apk/res/android
             E: manifest (line=2)
               A: android:versionCode(0x0101021b)=(type 0x10)0x1
               A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0")
               A: android:compileSdkVersion(0x01010572)=(type 0x10)0x1c
               A: android:compileSdkVersionCodename(0x01010573)="9" (Raw: "9")
               A: package="com.example.ume" (Raw: "com.example.ume")
               A: platformBuildVersionCode=(type 0x10)0x1c
               A: platformBuildVersionName=(type 0x10)0x9
               E: uses-sdk (line=7)
                 A: android:minSdkVersion(0x0101020c)=(type 0x10)0x10
                 A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1c
               E: uses-permission (line=14)
                 A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET")
               E: application (line=22)
                 A: android:label(0x01010001)="ume" (Raw: "ume")
                 A: android:icon(0x01010002)=@0x7f080000
                 A: android:name(0x01010003)="io.flutter.app.FlutterApplication" (Raw: "io.flutter.app.FlutterApplication")
                 A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
                 A: android:appComponentFactory(0x0101057a)="androidx.core.app.CoreComponentFactory" (Raw: "androidx.core.app.CoreComponentFactory")
                 E: activity (line=28)
                   A: android:theme(0x01010000)=@0x7f0a0000
                   A: android:name(0x01010003)="com.example.ume.MainActivity" (Raw: "com.example.ume.MainActivity")
                   A: android:launchMode(0x0101001d)=(type 0x10)0x1
                   A: android:configChanges(0x0101001f)=(type 0x11)0x40003fb4
                   A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
                   A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff
                   E: intent-filter (line=35)
                     E: action (line=36)
                       A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
                     E: category (line=38)
                       A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER")
                 E: meta-data (line=45)
                   A: android:name(0x01010003)="flutterEmbedding" (Raw: "flutterEmbedding")
                   A: android:value(0x01010024)=(type 0x10)0x2
[   +6 ms] executing: /Users/baps/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell -x logcat -v time -t 1
[  +25 ms] Exit code 0 from: /Users/baps/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell -x logcat -v time -t 1
[        ] --------- beginning of main
           03-04 15:31:39.424 I/GnssLocationProvider( 1877): WakeLock released by handleMessage(REPORT_SV_STATUS, 0, com.android.server.location.GnssLocationProvider$SvStatusInfo@dbf3d1b)
[   +5 ms] executing: /Users/baps/Library/Android/sdk/platform-tools/adb version
[        ] executing: /Users/baps/Library/Android/sdk/platform-tools/adb -s emulator-5554 logcat -v time -T 03-04 15:31:39.424
[  +12 ms] Android Debug Bridge version 1.0.41
           Version 29.0.5-5949299
           Installed as /Users/baps/Library/Android/sdk/platform-tools/adb
[   +2 ms] executing: /Users/baps/Library/Android/sdk/platform-tools/adb start-server
[   +7 ms] Building APK
[  +18 ms] Running Gradle task 'assembleDebug'...
[   +1 ms] gradle.properties already sets `android.enableR8`
[   +5 ms] Using gradle from /Users/baps/Documents/UME/ume/android/gradlew.
[   +7 ms] executing: /usr/bin/plutil -convert json -o - /Applications/Android Studio.app/Contents/Info.plist
[  +11 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Applications/Android Studio.app/Contents/Info.plist
[        ] {"CFBundleName":"Android
Studio","JVMOptions":{"ClassPath":"$APP_PACKAGE\/Contents\/lib\/bootstrap.jar:$APP_PACKAGE\/Contents\/lib\/extensions.jar:$APP_PACKAGE\/Contents\/lib\/util.jar:$APP_PACKAGE\/Contents\/lib\/jdom.jar:$APP_P
ACKAGE\/Contents\/lib\/log4j.jar:$APP_PACKAGE\/Contents\/lib\/trove4j.jar:$APP_PACKAGE\/Contents\/lib\/jna.jar","JVMVersion":"1.8*,1.8+","WorkingDirectory":"$APP_PACKAGE\/Contents\/bin","MainClass":"com.i
ntellij.idea.Main","Properties":{"idea.paths.selector":"AndroidStudio3.5","idea.executable":"studio","idea.platform.prefix":"AndroidStudio","idea.home.path":"$APP_PACKAGE\/Contents"}},"LSArchitecturePrior
ity":["x86_64"],"CFBundleVersion":"AI-191.8026.42.35.6010548","CFBundleDevelopmentRegion":"English","CFBundleDocumentTypes":[{"CFBundleTypeName":"Android Studio Project
File","CFBundleTypeExtensions":["ipr"],"CFBundleTypeRole":"Editor","CFBundleTypeIconFile":"studio.icns"},{"CFBundleTypeName":"All
documents","CFBundleTypeExtensions":["*"],"CFBundleTypeOSTypes":["****"],"CFBundleTypeRole":"Editor","LSTypeIsPackage":false}],"NSSupportsAutomaticGraphicsSwitching":true,"CFBundlePackageType":"APPL","CFB
undleIconFile":"studio.icns","NSHighResolutionCapable":true,"CFBundleShortVersionString":"3.5","CFBundleInfoDictionaryVersion":"6.0","CFBundleExecutable":"studio","LSRequiresNativeExecution":"YES","CFBund
leURLTypes":[{"CFBundleTypeRole":"Editor","CFBundleURLName":"Stacktrace","CFBundleURLSchemes":["idea"]}],"CFBundleIdentifier":"com.google.android.studio","LSApplicationCategoryType":"public.app-category.d
eveloper-tools","CFBundleSignature":"????","LSMinimumSystemVersion":"10.8","CFBundleGetInfoString":"Android Studio 3.5, build AI-191.8026.42.35.6010548. Copyright JetBrains s.r.o., (c) 2000-2019"}
[   +8 ms] executing: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java -version
[  +76 ms] Exit code 0 from: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java -version
[        ] openjdk version "1.8.0_202-release"
           OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
           OpenJDK 64-Bit Server VM (build 25.202-b49-5587405, mixed mode)
[   +2 ms] executing: [/Users/baps/Documents/UME/ume/android/] /Users/baps/Documents/UME/ume/android/gradlew -Pverbose=true -Ptarget=/Users/baps/Documents/UME/ume/lib/main.dart
-Ptrack-widget-creation=true -Pfilesystem-scheme=org-dartlang-root -Ptarget-platform=android-x86 assembleDebug
[ +826 ms] > Task :app:compileFlutterBuildDebug UP-TO-DATE
[        ] > Task :app:packLibsflutterBuildDebug UP-TO-DATE
[        ] > Task :app:preBuild UP-TO-DATE
[        ] > Task :app:preDebugBuild UP-TO-DATE
[        ] > Task :speech_recognition:preBuild UP-TO-DATE
[        ] > Task :speech_recognition:preDebugBuild UP-TO-DATE
[        ] > Task :speech_recognition:compileDebugAidl NO-SOURCE
[        ] > Task :app:compileDebugAidl NO-SOURCE
[        ] > Task :speech_recognition:packageDebugRenderscript NO-SOURCE
[        ] > Task :app:compileDebugRenderscript NO-SOURCE
[        ] > Task :app:checkDebugManifest UP-TO-DATE
[        ] > Task :app:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :app:cleanMergeDebugAssets
[        ] > Task :app:mergeDebugShaders UP-TO-DATE
[        ] > Task :app:compileDebugShaders UP-TO-DATE
[        ] > Task :app:generateDebugAssets UP-TO-DATE
[        ] > Task :speech_recognition:mergeDebugShaders UP-TO-DATE
[        ] > Task :speech_recognition:compileDebugShaders UP-TO-DATE
[        ] > Task :speech_recognition:generateDebugAssets UP-TO-DATE
[        ] > Task :speech_recognition:packageDebugAssets UP-TO-DATE
[        ] > Task :app:mergeDebugAssets
[ +276 ms] > Task :app:copyFlutterAssetsDebug
[        ] > Task :app:mainApkListPersistenceDebug UP-TO-DATE
[        ] > Task :app:generateDebugResValues UP-TO-DATE
[        ] > Task :app:generateDebugResources UP-TO-DATE
[        ] > Task :speech_recognition:generateDebugResValues UP-TO-DATE
[        ] > Task :speech_recognition:compileDebugRenderscript NO-SOURCE
[        ] > Task :speech_recognition:generateDebugResources UP-TO-DATE
[        ] > Task :speech_recognition:packageDebugResources UP-TO-DATE
[        ] > Task :app:mergeDebugResources UP-TO-DATE
[  +94 ms] > Task :app:createDebugCompatibleScreenManifests UP-TO-DATE
[        ] > Task :speech_recognition:checkDebugManifest UP-TO-DATE
[        ] > Task :speech_recognition:processDebugManifest UP-TO-DATE
[        ] > Task :app:processDebugManifest UP-TO-DATE
[        ] > Task :speech_recognition:parseDebugLibraryResources UP-TO-DATE
[        ] > Task :speech_recognition:generateDebugRFile UP-TO-DATE
[        ] > Task :app:processDebugResources UP-TO-DATE
[        ] > Task :speech_recognition:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :speech_recognition:javaPreCompileDebug UP-TO-DATE
[        ] > Task :speech_recognition:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :speech_recognition:bundleLibCompileDebug UP-TO-DATE
[        ] > Task :app:compileDebugKotlin UP-TO-DATE
[        ] > Task :app:javaPreCompileDebug UP-TO-DATE
[        ] > Task :app:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :app:compileDebugSources UP-TO-DATE
[        ] > Task :app:processDebugJavaRes NO-SOURCE
[        ] > Task :speech_recognition:processDebugJavaRes NO-SOURCE
[        ] > Task :speech_recognition:bundleLibResDebug UP-TO-DATE
[        ] > Task :app:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :speech_recognition:bundleLibRuntimeDebug UP-TO-DATE
[        ] > Task :speech_recognition:createFullJarDebug UP-TO-DATE
[        ] > Task :app:checkDebugDuplicateClasses UP-TO-DATE
[        ] > Task :app:desugarDebugFileDependencies UP-TO-DATE
[        ] > Task :app:mergeExtDexDebug UP-TO-DATE
[        ] > Task :app:transformClassesWithDexBuilderForDebug UP-TO-DATE
[        ] > Task :app:mergeDexDebug UP-TO-DATE
[        ] > Task :app:validateSigningDebug UP-TO-DATE
[        ] > Task :app:signingConfigWriterDebug UP-TO-DATE
[        ] > Task :app:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :speech_recognition:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :speech_recognition:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :speech_recognition:stripDebugDebugSymbols UP-TO-DATE
[        ] > Task :speech_recognition:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[        ] > Task :app:mergeDebugNativeLibs UP-TO-DATE
[  +95 ms] > Task :app:stripDebugDebugSymbols UP-TO-DATE
[        ] Compatible side by side NDK version was not found.
[  +35 ms] > Task :app:packageDebug UP-TO-DATE
[        ] > Task :app:assembleDebug UP-TO-DATE
[        ] > Task :speech_recognition:extractDebugAnnotations UP-TO-DATE
[        ] > Task :speech_recognition:mergeDebugGeneratedProguardFiles UP-TO-DATE
[        ] > Task :speech_recognition:mergeDebugConsumerProguardFiles UP-TO-DATE
[        ] > Task :speech_recognition:prepareLintJarForPublish UP-TO-DATE
[        ] > Task :speech_recognition:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :speech_recognition:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[        ] > Task :speech_recognition:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[        ] > Task :speech_recognition:bundleDebugAar UP-TO-DATE
[        ] > Task :speech_recognition:compileDebugSources UP-TO-DATE
[        ] > Task :speech_recognition:assembleDebug UP-TO-DATE
[        ] BUILD SUCCESSFUL in 1s
[        ] 58 actionable tasks: 3 executed, 55 up-to-date
[ +376 ms] Running Gradle task 'assembleDebug'... (completed in 1.8s)
[  +60 ms] calculateSha: LocalDirectory: '/Users/baps/Documents/UME/ume/build/app/outputs/apk'/app.apk
[  +43 ms] calculateSha: reading file took 41us
[ +478 ms] calculateSha: computing sha took 477us
[   +6 ms] ✓ Built build/app/outputs/apk/debug/app-debug.apk.
[   +4 ms] executing: /Users/baps/Library/Android/sdk/build-tools/29.0.3/aapt dump xmltree /Users/baps/Documents/UME/ume/build/app/outputs/apk/app.apk AndroidManifest.xml
[   +7 ms] Exit code 0 from: /Users/baps/Library/Android/sdk/build-tools/29.0.3/aapt dump xmltree /Users/baps/Documents/UME/ume/build/app/outputs/apk/app.apk AndroidManifest.xml
[        ] N: android=http://schemas.android.com/apk/res/android
             E: manifest (line=2)
               A: android:versionCode(0x0101021b)=(type 0x10)0x1
               A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0")
               A: android:compileSdkVersion(0x01010572)=(type 0x10)0x1c
               A: android:compileSdkVersionCodename(0x01010573)="9" (Raw: "9")
               A: package="com.example.ume" (Raw: "com.example.ume")
               A: platformBuildVersionCode=(type 0x10)0x1c
               A: platformBuildVersionName=(type 0x10)0x9
               E: uses-sdk (line=7)
                 A: android:minSdkVersion(0x0101020c)=(type 0x10)0x10
                 A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1c
               E: uses-permission (line=14)
                 A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET")
               E: application (line=22)
                 A: android:label(0x01010001)="ume" (Raw: "ume")
                 A: android:icon(0x01010002)=@0x7f080000
                 A: android:name(0x01010003)="io.flutter.app.FlutterApplication" (Raw: "io.flutter.app.FlutterApplication")
                 A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
                 A: android:appComponentFactory(0x0101057a)="androidx.core.app.CoreComponentFactory" (Raw: "androidx.core.app.CoreComponentFactory")
                 E: activity (line=28)
                   A: android:theme(0x01010000)=@0x7f0a0000
                   A: android:name(0x01010003)="com.example.ume.MainActivity" (Raw: "com.example.ume.MainActivity")
                   A: android:launchMode(0x0101001d)=(type 0x10)0x1
                   A: android:configChanges(0x0101001f)=(type 0x11)0x40003fb4
                   A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
                   A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff
                   E: intent-filter (line=35)
                     E: action (line=36)
                       A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
                     E: category (line=38)
                       A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER")
                 E: meta-data (line=45)
                   A: android:name(0x01010003)="flutterEmbedding" (Raw: "flutterEmbedding")
                   A: android:value(0x01010024)=(type 0x10)0x2
[   +1 ms] Stopping app 'app.apk' on AOSP on IA Emulator.
[        ] executing: /Users/baps/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell am force-stop com.example.ume
[ +128 ms] executing: /Users/baps/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell pm list packages com.example.ume
[ +142 ms] package:com.example.ume
[   +5 ms] executing: /Users/baps/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell cat /data/local/tmp/sky.com.example.ume.sha1
[  +71 ms] df427ed15954510fb1df1c3258a0bc13bfe26ad4
[   +1 ms] Latest build already installed.
[        ] AOSP on IA Emulator startApp
[   +4 ms] executing: /Users/baps/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell am start -a android.intent.action.RUN -f 0x20000000 --ez enable-background-compilation true --ez
enable-dart-profiling true --ez enable-checked-mode true --ez verify-entry-points true com.example.ume/com.example.ume.MainActivity
[ +178 ms] Starting: Intent { act=android.intent.action.RUN flg=0x20000000 cmp=com.example.ume/.MainActivity (has extras) }
[        ] Waiting for observatory port to be available...
[ +628 ms] D/FlutterActivity(10717): Using the launch theme as normal theme.
[   +9 ms] D/FlutterActivityAndFragmentDelegate(10717): Setting up FlutterEngine.
[        ] D/FlutterActivityAndFragmentDelegate(10717): No preferred FlutterEngine was provided. Creating a new FlutterEngine for this FlutterFragment.
[ +372 ms] W/FlutterEngine(10717): Tried to automatically register plugins with FlutterEngine (io.flutter.embedding.engine.FlutterEngine@856c935) but could not find and invoke the
GeneratedPluginRegistrant.
[   +1 ms] D/FlutterActivityAndFragmentDelegate(10717): Attaching FlutterEngine to the Activity that owns this Fragment.
[  +50 ms] D/FlutterView(10717): Attaching to a FlutterEngine: io.flutter.embedding.engine.FlutterEngine@856c935
[  +30 ms] D/FlutterActivityAndFragmentDelegate(10717): Executing Dart entrypoint: main, and sending initial route: /
[  +82 ms] Observatory URL on device: http://127.0.0.1:39718/s8QHYLNY7m4=/
[   +1 ms] executing: /Users/baps/Library/Android/sdk/platform-tools/adb -s emulator-5554 forward tcp:0 tcp:39718
[   +8 ms] 53122
[        ] Forwarded host port 53122 to device port 39718 for Observatory
[  +14 ms] Connecting to service protocol: http://127.0.0.1:53122/s8QHYLNY7m4=/
[ +307 ms] Successfully connected to service protocol: http://127.0.0.1:53122/s8QHYLNY7m4=/
[   +3 ms] Sending to VM service: getVM({})
[   +6 ms] Result: {type: VM, name: vm, architectureBits: 32, hostCPU: Intel(R) Core(TM) i7-4870HQ CPU @ 2.50GHz, operatingSystem: android, targetCPU: ia32, version: 2.7.0 (Fri Dec 6 16:26:51 2019 +0100)
on "android_ia32", _profilerMode: VM, _nativeZoneMemoryUsage: ...
[   +5 ms] Sending to VM service: getIsolate({isolateId: isolates/1464168873366403})
[   +3 ms] Sending to VM service: _flutter.listViews({})
[   +8 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0xe83f9710, isolate: {type: @Isolate, fixedId: true, id: isolates/1464168873366403, name:
main.dart$main-1464168873366403, number: 1464168873366403}}]}
[   +5 ms] DevFS: Creating new filesystem on the device (null)
[        ] Sending to VM service: _createDevFS({fsName: ume})
[  +52 ms] Result: {type: Isolate, id: isolates/1464168873366403, name: main, number: 1464168873366403, _originNumber: 1464168873366403, startTime: 1583316104013, _heaps: {new: {type: HeapSpace, name:
new, vmName: Scavenger, collections: 2, avgCollectionPeriodMillis...
[  +62 ms] Result: {type: FileSystem, name: ume, uri: file:///data/user/0/com.example.ume/code_cache/umeODCVCK/ume/}
[        ] DevFS: Created new filesystem on the device (file:///data/user/0/com.example.ume/code_cache/umeODCVCK/ume/)
[   +2 ms] Updating assets
[ +151 ms] Syncing files to device AOSP on IA Emulator...
[   +1 ms] Scanning asset files
[   +4 ms] <- reset
[        ] Compiling dart to kernel with 0 updated files
[   +8 ms] /Users/baps/Documents/development/flutter/bin/cache/dart-sdk/bin/dart /Users/baps/Documents/development/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root
/Users/baps/Documents/development/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --target=flutter -Ddart.developer.causal_async_stacks=true --output-dill
/var/folders/63/xgjcl4191fn774pnflxh193c0000gn/T/flutter_tool.UnVxEl/app.dill --packages /Users/baps/Documents/UME/ume/.packages -Ddart.vm.profile=false -Ddart.vm.product=false
--bytecode-options=source-positions,local-var-info,debugger-stops,instance-field-initializers,keep-unreachable-code,avoid-closure-call-instructions --enable-asserts --track-widget-creation
--filesystem-scheme org-dartlang-root
[   +5 ms] <- compile package:ume/main.dart
[  +54 ms] D/EGL_emulation(10717): eglMakeCurrent: 0xe845eee0: ver 3 0 (tinfo 0xe8415290)
[   +5 ms] D/eglCodecCommon(10717): setVertexArrayObject: set vao to 0 (0) 1 0
[ +850 ms] I/flutter (10717): ══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞═══════════════════════════════════════════════════════════
[        ] I/flutter (10717): The following assertion was thrown building DropdownButton<String>(dirty, dependencies: [MediaQuery,
[        ] I/flutter (10717): _InheritedTheme, _LocalizationsScope-[GlobalKey#39a01]], state: _DropdownButtonState<String>#64505):
[        ] I/flutter (10717): type 'DefaultTextStyle' is not a subtype of type 'Text' of 'value'
[   +5 ms] I/flutter (10717): 
[        ] I/flutter (10717): Either the assertion indicates an error in the framework itself, or we should provide substantially
[        ] I/flutter (10717): more information in this error message to help you determine and fix the underlying cause.
[        ] I/flutter (10717): In either case, please report this assertion by filing a bug on GitHub:
[        ] I/flutter (10717):   https://github.com/flutter/flutter/issues/new?template=BUG.md
[        ] I/flutter (10717): 
[        ] I/flutter (10717): The relevant error-causing widget was:
[        ] I/flutter (10717):   DropdownButton<String> file:///Users/baps/Documents/UME/ume/lib/views/temp.dart:15:16
[        ] I/flutter (10717): 
[        ] I/flutter (10717): When the exception was thrown, this was the stack:
[        ] I/flutter (10717): #0      List.add (dart:core-patch/growable_array.dart)
[        ] I/flutter (10717): #1      _DropdownButtonState.build (package:flutter/src/material/dropdown.dart:1276:13)
[        ] I/flutter (10717): #2      StatefulElement.build (package:flutter/src/widgets/framework.dart:4334:27)
[        ] I/flutter (10717): #3      ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4223:15)
[        ] I/flutter (10717): #4      Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #5      ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #6      StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4381:11)
[        ] I/flutter (10717): #7      ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #8      Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #9      Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #10     SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5445:14)
[        ] I/flutter (10717): #11     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #12     Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #13     ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #14     Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #15     ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #16     ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #17     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #18     Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #19     ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #20     Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #21     ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #22     ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #23     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #24     Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #25     ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #26     Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #27     ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #28     ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #29     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #30     Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #31     ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #32     Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #33     ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #34     ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #35     ParentDataElement.mount (package:flutter/src/widgets/framework.dart:4617:11)
[        ] I/flutter (10717): #36     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[   +2 ms] I/flutter (10717): #37     MultiChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5551:32)
[        ] I/flutter (10717): #38     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #39     Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #40     ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #41     Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #42     ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #43     StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4381:11)
[        ] I/flutter (10717): #44     ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #45     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #46     Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #47     ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #48     Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #49     ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #50     ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #51     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #52     Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #53     ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #54     Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #55     ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #56     StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4381:11)
[        ] I/flutter (10717): #57     ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #58     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #59     Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #60     SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5445:14)
[        ] I/flutter (10717): #61     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #62     Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #63     ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #64     Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[   +1 ms] I/flutter (10717): #65     ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #66     ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #67     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #68     Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[   +6 ms] I/flutter (10717): #69     SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5445:14)
[        ] I/flutter (10717): #70     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #71     Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #72     ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #73     Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #74     ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #75     StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4381:11)
[        ] I/flutter (10717): #76     ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #77     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #78     Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #79     ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #80     Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #81     ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #82     StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4381:11)
[        ] I/flutter (10717): #83     ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #84     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #85     Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #86     ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #87     Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #88     ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #89     ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #90     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #91     Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #92     ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #93     Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #94     ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #95     ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #96     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[   +1 ms] I/flutter (10717): #97     Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #98     ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[   +2 ms] I/flutter (10717): #99     Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #100    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #101    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4381:11)
[        ] I/flutter (10717): #102    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #103    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #104    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #105    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #106    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #107    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #108    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4381:11)
[        ] I/flutter (10717): #109    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #110    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #111    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #112    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5445:14)
[        ] I/flutter (10717): #113    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #114    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #115    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #116    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #117    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #118    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #119    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #120    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #121    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5445:14)
[        ] I/flutter (10717): #122    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #123    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #124    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5445:14)
[        ] I/flutter (10717): #125    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #126    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #127    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #128    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #129    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #130    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4381:11)
[        ] I/flutter (10717): #131    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #132    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #133    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #134    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5445:14)
[        ] I/flutter (10717): #135    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #136    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[ +982 ms] I/flutter (10717): #137    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5445:14)
[        ] I/flutter (10717): #138    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #139    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #140    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #141    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #142    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #143    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4381:11)
[        ] I/flutter (10717): #144    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #145    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #146    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #147    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #148    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #149    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #150    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #151    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #152    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #153    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #154    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #155    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #156    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4381:11)
[        ] I/flutter (10717): #157    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #158    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #159    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #160    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5445:14)
[        ] I/flutter (10717): #161    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #162    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #163    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #164    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #165    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #166    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #167    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #168    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #169    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5445:14)
[        ] I/flutter (10717): #170    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #171    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #172    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #173    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #174    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #175    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4381:11)
[        ] I/flutter (10717): #176    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #177    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #178    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #179    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #180    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #181    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #182    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #183    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #184    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #185    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5445:14)
[        ] I/flutter (10717): #186    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #187    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #188    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #189    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #190    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #191    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #192    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #193    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #194    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #195    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #196    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #197    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4381:11)
[        ] I/flutter (10717): #198    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #199    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #200    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #201    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #202    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #203    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #204    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4381:11)
[        ] I/flutter (10717): #205    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #206    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #207    MultiChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5551:32)
[        ] I/flutter (10717): #208    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #209    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #210    _TheatreElement.mount (package:flutter/src/widgets/overlay.dart:591:16)
[        ] I/flutter (10717): #211    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #212    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #213    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #214    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #215    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #216    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4381:11)
[        ] I/flutter (10717): #217    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #218    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[   +3 ms] I/flutter (10717): #219    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #220    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #221    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #222    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #223    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #224    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #225    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #226    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5445:14)
[        ] I/flutter (10717): #227    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #228    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #229    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[   +1 ms] I/flutter (10717): #230    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #231    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #232    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4381:11)
[        ] I/flutter (10717): #233    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #234    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #235    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #236    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5445:14)
[        ] I/flutter (10717): #237    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #238    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #239    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5445:14)
[        ] I/flutter (10717): #240    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #241    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #242    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #243    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #244    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #245    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #246    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #247    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #248    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #249    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #250    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #251    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4381:11)
[        ] I/flutter (10717): #252    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #253    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #254    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #255    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #256    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #257    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #258    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #259    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #260    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #261    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #262    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #263    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #264    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #265    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #266    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #267    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #268    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #269    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #270    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #271    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #272    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #273    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #274    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #275    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #276    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #277    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #278    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #279    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #280    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #281    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #282    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #283    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[ +981 ms] I/flutter (10717): #284    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #285    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #286    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #287    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #288    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #289    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #290    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[  +16 ms] I/flutter (10717): #291    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #292    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #293    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #294    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4381:11)
[        ] I/flutter (10717): #295    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #296    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #297    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #298    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #299    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #300    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #301    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #302    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #303    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #304    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #305    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #306    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #307    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #308    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #309    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #310    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #311    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #312    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #313    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #314    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #315    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #316    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #317    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #318    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #319    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #320    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #321    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #322    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #323    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #324    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:4206:5)
[        ] I/flutter (10717): #325    ComponentElement.mount (package:flutter/src/widgets/framework.dart:4201:5)
[        ] I/flutter (10717): #326    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #327    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #328    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5445:14)
[        ] I/flutter (10717): #329    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3194:14)
[        ] I/flutter (10717): #330    Element.updateChild (package:flutter/src/widgets/framework.dart:2988:12)
[        ] I/flutter (10717): #331    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:4243:16)
[        ] I/flutter (10717): #332    Element.rebuild (package:flutter/src/widgets/framework.dart:3947:5)
[        ] I/flutter (10717): #333    BuildOwner.buildScope (package:flutter/src/widgets/framework.dart:2432:33)
[        ] I/flutter (10717): #334    WidgetsBinding.drawFrame (package:flutter/src/widgets/binding.dart:773:20)
[        ] I/flutter (10717): #335    RendererBinding._handlePersistentFrameCallback (package:flutter/src/rendering/binding.dart:283:5)
[        ] I/flutter (10717): #336    SchedulerBinding._invokeFrameCallback (package:flutter/src/scheduler/binding.dart:1102:15)
[        ] I/flutter (10717): #337    SchedulerBinding.handleDrawFrame (package:flutter/src/scheduler/binding.dart:1041:9)
[        ] I/flutter (10717): #338    SchedulerBinding.scheduleWarmUpFrame.<anonymous closure> (package:flutter/src/scheduler/binding.dart:850:7)
[        ] I/flutter (10717): #347    _Timer._runTimers (dart:isolate-patch/timer_impl.dart:384:19)
[        ] I/flutter (10717): #348    _Timer._handleMessage (dart:isolate-patch/timer_impl.dart:418:5)
[        ] I/flutter (10717): #349    _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:174:12)
[        ] I/flutter (10717): (elided 8 frames from package dart:async and package dart:async-patch)
[        ] I/flutter (10717): 
[        ] I/flutter (10717): ════════════════════════════════════════════════════════════════════════════════════════════════════
[+3138 ms] Updating files
[ +593 ms] DevFS: Sync finished
[   +1 ms] Syncing files to device AOSP on IA Emulator... (completed in 6,715ms, longer than expected)
[        ] Synced 2.5MB.
[   +1 ms] Sending to VM service: _flutter.listViews({})
[   +7 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0xe83f9710, isolate: {type: @Isolate, fixedId: true, id: isolates/1464168873366403, name:
main.dart$main-1464168873366403, number: 1464168873366403}}]}
[   +1 ms] <- accept
[        ] Connected to _flutterView/0xe83f9710.


@no-response no-response bot removed the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Mar 4, 2020
@TahaTesser
Copy link
Member

Related to #42340

@TahaTesser TahaTesser added framework flutter/packages/flutter repository. See also f: labels. c: crash Stack traces logged to the console f: material design flutter/packages/flutter/material repository. labels Mar 4, 2020
@varunkamani
Copy link
Author

Yes I know that but the issue is already closed

@shihaohong
Copy link
Contributor

This issue should already have been fixed in master. Based on your flutter doctor, you're running on stable where the fix hasn't gotten to yet. I'll close out the issue.

@varunkamani
Copy link
Author

Thanks @shihaohong
when will it get to the stable version?

@sarinupreti
Copy link

similar issue need this in stable version . when will it be merged in stable ?

@shihaohong
Copy link
Contributor

We do not have dates for when stable releases occur, but we generally do 4 stable releases a year: https://github.com/flutter/flutter/wiki/Roadmap#release-channels-and-cadence

@lock
Copy link
lock bot commented May 5, 2020

This thread has been automatically locked since there has not been any recent activity after it was closed. If you are still experiencing a similar issue, please open a new bug, including the output of flutter doctor -v and a minimal reproduction of the issue.

@lock lock bot locked and limited conversation to collaborators May 5, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
c: crash Stack traces logged to the console f: material design flutter/packages/flutter/material repository. framework flutter/packages/flutter repository. See also f: labels.
Projects
None yet
Development

No branches or pull requests

4 participants