Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/image/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Image tid 4822(1.io)中的致命信号11(SIGSEGV),代码1,故障地址0x0_Image_Flutter_Dart_Crash_Fatal Error - Fatal编程技术网

Image tid 4822(1.io)中的致命信号11(SIGSEGV),代码1,故障地址0x0

Image tid 4822(1.io)中的致命信号11(SIGSEGV),代码1,故障地址0x0,image,flutter,dart,crash,fatal-error,Image,Flutter,Dart,Crash,Fatal Error,我的项目有一个问题,它包含大约200个资产图像,大约130兆字节,没有使用互联网,它在崩溃几分钟后缓慢地显示图像,我试图清理并创建新项目,但我得到了相同的错误。 这是我的日志 Performing hot restart... Syncing files to device Android SDK built for x86... Restarted application in 29,624ms. F/libc ( 4781): Fatal signal 11 (SIGSEGV), c

我的项目有一个问题,它包含大约200个资产图像,大约130兆字节,没有使用互联网,它在崩溃几分钟后缓慢地显示图像,我试图清理并创建新项目,但我得到了相同的错误。 这是我的日志

Performing hot restart...
Syncing files to device Android SDK built for x86...
Restarted application in 29,624ms.

F/libc    ( 4781): Fatal signal 11 (SIGSEGV), code 1, fault addr 0x0 in tid 4822 (1.io)
*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
Build fingerprint: 'google/sdk_google_phone_x86/generic_x86:7.0/NYC/4409132:user/release-keys'
Revision: '0'
ABI: 'x86'
pid: 4781, tid: 4822, name: 1.io  >>> com.company.project <<<
signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x0
    eax 00000000  ebx 8c29dac4  ecx a7880000  edx 9868b500
    esi 05b8d800  edi 00000000
    xcs 00000073  xds 0000007b  xes 0000007b  xfs 0000003b  xss 0000007b
    eip 8ba42285  ebp 8a201018  esp 8a200ff0  flags 00010286
backtrace:
    #00 pc 000af285  /data/app/com.company.project-1/lib/x86/libflutter.so (offset 0x1208000)
Lost connection to device.
正在执行热重启。。。 正在将文件同步到为x86构建的Android SDK设备。。。 在29624ms内重新启动应用程序。 F/libc(4781):tid 4822(1.io)中的致命信号11(SIGSEGV),代码1,故障地址0x0 *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** 构建指纹:“google/sdk\u google\u phone\u x86/generic\u x86:7.0/NYC/4409132:user/release key” 修订:“0” ABI:'x86' pid:4781,tid:4822,名称:1.io>>>com.company.project
  myMethod(context) {
    return GridView.count(
      childAspectRatio: 1.0,
      padding: EdgeInsets.all(16),
      crossAxisCount: 2,
      crossAxisSpacing: 18,
      mainAxisSpacing: 18,
      children: getTypesMethods.map<Widget>((data) {
    
        return myTabButton(
          foodType: data,
        );
      }).toList(),
    );
  }

myTabButton(FoodType foodtype){
   return Container(
        width: 0.4 * MediaQuery.of(context).size.width,
        height: 0.4 * MediaQuery.of(context).size.width,
        decoration: BoxDecoration(
          borderRadius: BorderRadius.all(Radius.circular(8)),
          border: Border.all(color: Color(0xffEBEBEB), width: 1),
          color: Colors.white,
        ),
        child: Column(
          mainAxisAlignment: MainAxisAlignment.start,
          children: <Widget>[
            ClipRRect(
              borderRadius: BorderRadius.circular(8.0),
              child: SizedBox(
                width: 0.4 * MediaQuery.of(context).size.width,
                height: 0.27 * MediaQuery.of(context).size.width,
                child: Container(
                  decoration: new BoxDecoration(
                    image: new DecorationImage(
                      colorFilter: new ColorFilter.mode(
                          Colors.white.withOpacity(1), BlendMode.dstATop),
                      image: new AssetImage(foodType.image),
                      fit: BoxFit.fill,
                    ),
                  ),
                ),
                // child: Image.asset(
                //   foodType.image,
                //   fit: BoxFit.fill,
                // ),
              ),
            ),
            SizedBox(
                width: 0.4 * MediaQuery.of(context).size.width,
                height: 0.1 * MediaQuery.of(context).size.width,
                child: Center(
                  child: Text(
                    foodType.typeName,
                    style: TextStyle(fontFamily: fontBold, color: Colors.black),
                  ),
                )),
          ],
        ),
      );
}