[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

Use AndroidView (PlatformView) to load native View in Flutter and display blank #65369

Closed
l1x2d3 opened this issue Sep 8, 2020 · 12 comments
Closed
Labels
in triage Presently being triaged by the triage team

Comments

@l1x2d3
Copy link
l1x2d3 commented Sep 8, 2020

When I use AndroidView (PlatformView) to load the native View in Flutter, sometimes it can be loaded, sometimes it can’t be loaded, only blank

This is my Flutter code

Widget _mapView() {
    Widget mapView;
    if (Platform.isAndroid) {
      mapView = AndroidView(
          viewType: 'plugin.pip/nativeMapView',
          gestureRecognizers: <Factory<OneSequenceGestureRecognizer>>[
            new Factory<OneSequenceGestureRecognizer>(
              () => new EagerGestureRecognizer(),
            ),
          ].toSet());
    } else {
      mapView = UiKitView(
          viewType: 'plugin.pip/nativeMapView',
          creationParamsCodec: new StandardMessageCodec());
    }
    return Container(
      child: mapView,
    );
  }
This is my Android code
 override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        MapViewFlutterPlugin.registerWith(PageRouter.getPluginRegistry())
    }

object MapViewFlutterPlugin {
    @JvmStatic
    fun registerWith(registry: PluginRegistry) {
        val key = MapViewFlutterPlugin::class.java.canonicalName
        if (registry.hasPlugin(key)) return
        val registrar = registry.registrarFor(key)
        registrar.platformViewRegistry().registerViewFactory("plugin.pip/nativeMapView", MapViewFactory())
    }
}

class MapViewFactory : PlatformViewFactory(StandardMessageCodec.INSTANCE) {
    override fun create(context: Context, id: Int, args: Any?): PlatformView {
        val view = MainMapView(context)
        view.myNativeView?.id = id
        return view
    }
}



package com.tzyun.pip.mapview

import android.content.Context
import android.graphics.*
import android.os.Bundle
import android.util.Log
import android.view.LayoutInflater
import android.view.View
import android.widget.RelativeLayout
import android.widget.TextView
import androidx.core.content.ContextCompat
import androidx.viewpager.widget.ViewPager
import androidx.viewpager.widget.ViewPager.OnPageChangeListener
import com.amap.api.location.AMapLocation
import com.amap.api.location.AMapLocationClient
import com.amap.api.location.AMapLocationClientOption
import com.amap.api.location.AMapLocationListener
import com.amap.api.maps.AMap
import com.amap.api.maps.AMap.InfoWindowAdapter
import com.amap.api.maps.CameraUpdateFactory
import com.amap.api.maps.CoordinateConverter
import com.amap.api.maps.MapView
import com.amap.api.maps.model.*
import com.google.common.base.Strings
import com.google.gson.reflect.TypeToken
import com.tzyun.pip.R
import com.tzyun.pip.base.MyApplication
import com.tzyun.pip.bean.HomeProjectModel
import com.tzyun.pip.bean.ProjectsBean
import com.tzyun.pip.mapview.CardPagerAdapter.OnCardLayoutClickListener
import com.tzyun.pip.plugin.MapFlutterPluginCounter
import com.tzyun.pip.utils.LogUtils
import com.tzyun.pip.utils.UnitUtils
import io.flutter.plugin.platform.PlatformView
import java.io.File
import java.io.FileOutputStream
import java.io.IOException
import java.util.*

class MainMapView(private val context: Context) : PlatformView, View.OnClickListener, ActivityLifecycleListener, InfoWindowAdapter, OnCockpitDataListener {
    private var layoutInflater: LayoutInflater? = null
    var myNativeView: View? = null
    var mLocationClient: AMapLocationClient? = null

    var mLocationListener: AMapLocationListener? = null

    var mLocationOption: AMapLocationClientOption? = null
    private var aMapLocations: AMapLocation? = null
    private var myLocationStyle: MyLocationStyle? = null
    private var map_view: MapView? = null
    private var warning_num: TextView? = null
    private var warning_rel: RelativeLayout? = null
    private var aMap: AMap? = null
    private var currentMarker: Marker? = null
    private var currentPolyline: Polyline? = null
    private var addAPolyline: Polyline? = null
    private var homeProjectList: ArrayList<HomeProjectModel>? = null
    private var currentGroupColour: String? = null
    private var viewPager: ViewPager? = null
    private var cardPagerAdapter: CardPagerAdapter? = null
    private var currentDataList: ArrayList<Any>? = null
    private var item_type = ITEM_TYPE_PROJECT_GROUP
    private var pageGroupSelected = 0 
    private var pageSelected = 0 
    private var converter: CoordinateConverter? = null
    private var markerList: ArrayList<Marker>? = null
    private var polylineHashMap: HashMap<Int, Polyline>? = null

  
    private var isPolylineClick = false

    var isSlideSwitchPage: Boolean = true

    init {
        layoutInflater = LayoutInflater.from(context)
        myNativeView = layoutInflater?.inflate(R.layout.main_map_view, null)
        initView(null)
        setAMapClickListener()
    }

    override fun getView(): View? {
        return myNativeView
    }

    override fun onCockpitData(cockpitJson: String) {
        val type = object : TypeToken<List<HomeProjectModel>?>() {}.type
        homeProjectList = MyApplication.gson.fromJson<List<HomeProjectModel>>(cockpitJson, type) as ArrayList<HomeProjectModel>?
        homeProjectList?.isEmpty()?.let { warning_rel?.visibility = if (it) View.VISIBLE else View.GONE }
        setViewPager(pageGroupSelected)
    }

    override fun dispose() {}

    private fun initView(instanceState: Bundle?) {
        map_view = myNativeView?.findViewById(R.id.map_view)
        map_view?.onCreate(instanceState)
        if (aMap == null) {
            aMap = map_view?.map
        }
        if (aMap == null) {
            aMap = map_view?.map
            aMap?.uiSettings?.isZoomControlsEnabled = true
            aMap?.uiSettings?.setLogoLeftMargin(-400)
            aMap?.uiSettings?.setLogoBottomMargin(-400)
        }
        viewPager = myNativeView?.findViewById(R.id.viewPager)
        viewPager?.clipToPadding = false
        viewPager?.setPadding(UnitUtils.dp2pxInt(context, 16f), 0, UnitUtils.dp2pxInt(context, 16f), 0)
        warning_num = myNativeView?.findViewById(R.id.warning_num)
        warning_num?.setOnClickListener(this)
        warning_rel = myNativeView?.findViewById(R.id.warning_rel)
        warning_rel?.visibility = View.GONE
        currentDataList = ArrayList()
        cardPagerAdapter = CardPagerAdapter(context)
        viewPager?.adapter = cardPagerAdapter
        cardPagerAdapter?.setOnCardLayoutClickListener(object : OnCardLayoutClickListener {
            override fun onCardLayout(objects: Any?) {
                var map: HashMap<String, Any?> = HashMap()
                if (objects is HomeProjectModel) {
                    val model = objects
                    map["projectName"] = model.projectName
                    map["projectId"] = model.projectId
                } else if (objects is ProjectsBean) {
                    val model = objects
                    map["projectName"] = model.projectSite
                    map["projectId"] = model.projectId
                    map["projectSiteId"] = model.projectSiteId
                }
                map["pageRoute"] = "projectCard"
                MapFlutterPluginCounter.eventSink?.success(map)

            }
        })
        myNativeView?.findViewById<View>(R.id.location_btn)?.setOnClickListener(this)

    }


    override fun onClick(v: View) {
        when (v.id) {
            R.id.location_btn -> {
                if (myLocationStyle == null) {
                    myLocationStyle = MyLocationStyle()
                    myLocationStyle?.myLocationIcon(BitmapDescriptorFactory.fromResource(R.mipmap.icon_location_1))
                    myLocationStyle?.myLocationType(MyLocationStyle.LOCATION_TYPE_LOCATE) 
                }
                if (aMap != null) {
                    aMap?.myLocationStyle = myLocationStyle 
                    aMap?.isMyLocationEnabled = true
                }
            }
            R.id.warning_num -> {
                MapFlutterPluginCounter.eventSink?.success("")
            }
            else -> {
            }
        }
    }

    private fun setAMapClickListener() {
        markerList = ArrayList()
        polylineHashMap = HashMap()
        mLocationListener = AMapLocationListener { aMapLocation: AMapLocation? -> aMapLocations = aMapLocation }
        mLocationClient = AMapLocationClient(context)
        mLocationClient?.setLocationListener(mLocationListener)
        mLocationOption = AMapLocationClientOption()
        mLocationOption?.locationMode = AMapLocationClientOption.AMapLocationMode.Hight_Accuracy
        mLocationOption?.httpTimeOut = 10000
        mLocationOption?.isLocationCacheEnable = false
        mLocationClient?.stopLocation()
        mLocationClient?.setLocationOption(mLocationOption)
        mLocationClient?.startLocation()
        converter = CoordinateConverter(context)
        converter?.from(CoordinateConverter.CoordType.BAIDU)
        aMap?.setOnPolylineClickListener { polyline: Polyline? ->
            isPolylineClick = true
            isSlideSwitchPage = false
            setSelectedPolyline(polyline, true)
        }
        aMap?.setOnMarkerClickListener { marker: Marker ->
            uncheckPolyline()
            if (marker.getObject() is ProjectsBean) {
                isSlideSwitchPage = false
                showMarkerInfo(marker)
                return@setOnMarkerClickListener true
            } else {
                return@setOnMarkerClickListener false
            }
        }
        aMap?.setOnMapClickListener { latLng: LatLng? ->
            if (item_type == ITEM_TYPE_PROJECT) {
                onMapClickState()
            }
        }
        aMap?.setInfoWindowAdapter(this) 
        viewPager?.addOnPageChangeListener(object : OnPageChangeListener {
            override fun onPageScrolled(i: Int, v: Float, i1: Int) {
                pageSelected = i
            }

            override fun onPageSelected(i: Int) { 
                pageSelected = i
                if (isSlideSwitchPage) {
                    if (item_type == ITEM_TYPE_PROJECT_GROUP) {
                        pageGroupSelected = i
                        val projectModel = currentDataList?.get(i) as HomeProjectModel
                        currentGroupColour = projectModel.colour
                        setRiskSum(projectModel.projectGroupRiskSum)
                        drawAMapOverlay(projectModel.children)
                    } else {
                        val projectsBean = currentDataList?.get(i) as ProjectsBean
                        setRiskSum(projectsBean.projectRiskSum)
                        markerList?.let {
                            for (mapScreenMarker in it) {
                                val projects = mapScreenMarker.getObject() as ProjectsBean
                                if (projects.projectId == projectsBean.projectId) {
                                    showMarkerInfo(mapScreenMarker)
                                    break
                                }
                            }
                        }
                    }
                }
            }

            override fun onPageScrollStateChanged(i: Int) {
            }
        })
    }
    private fun onMapClickState() {
        if (isPolylineClick) {
            isPolylineClick = false
            return
        }
        restoreMarker()
        item_type = ITEM_TYPE_PROJECT_GROUP
        setViewPager(pageGroupSelected)
    }

    private fun setViewPager(position: Int) {
        if (homeProjectList?.size?.compareTo(0) ?: 0 > 0) {
            currentDataList?.clear()
            homeProjectList?.let { currentDataList?.addAll(it) }
            cardPagerAdapter?.addItem(currentDataList)
            viewPager?.currentItem = position
            homeProjectList?.get(position)?.projectGroupRiskSum?.let { setRiskSum(it) }
            val homeProjectModel = homeProjectList?.get(position)
            currentGroupColour = homeProjectModel?.colour
            homeProjectModel?.children?.let { drawAMapOverlay(it) }
        }
    }

    private fun drawAMapOverlay(projectsBeans: List<ProjectsBean>) {
        markerList?.clear()
        polylineHashMap?.clear()
        aMap?.clear()
        val boundsBuilder = LatLngBounds.Builder()
        for (projectBean in projectsBeans) {
            if (projectBean.siteType == 1) {
                var latLng: LatLng? = null
                for (mapLinePoint in projectBean.proSiteCoordinate) {
                    if (Strings.isNullOrEmpty(mapLinePoint.latitude) || Strings.isNullOrEmpty(mapLinePoint.longitude)) continue
                    
                    converter?.coord(LatLng(java.lang.Double.valueOf(mapLinePoint.latitude), java.lang.Double.valueOf(mapLinePoint.longitude)))
                    latLng = converter?.convert()
                    val bitmap = drawCircle(getGroupColour(projectBean.projectRiskSum), UnitUtils.dp2px(context, 17f).toInt(), UnitUtils.dp2px(context, 17f).toInt())
                    val markerOptions = MarkerOptions()
                    markerOptions.anchor(0.5f, 0.5f)
                    markerOptions.position(latLng)
                    markerOptions.title(projectBean.projectSite)
                    markerOptions.icon(BitmapDescriptorFactory.fromBitmap(bitmap))
                    markerOptions.visible(true)
                    val marker = aMap?.addMarker(markerOptions)
                    marker?.setObject(projectBean)
                    marker?.let { markerList?.add(it) }
                    boundsBuilder.include(latLng)
                }
            } else { 
                val polylineOptions = PolylineOptions()
                polylineOptions.color(getGroupColour(projectBean.projectRiskSum))
                polylineOptions.width(UnitUtils.dp2px(context, 8f))
                for (mapLinePoint in projectBean.proSiteCoordinate) {
                    converter?.coord(LatLng(java.lang.Double.valueOf(mapLinePoint.latitude), java.lang.Double.valueOf(mapLinePoint.longitude)))
                    polylineOptions.add(converter?.convert())
                    val bitmap = drawCircles(UnitUtils.dp2pxInt(context, 17f), UnitUtils.dp2pxInt(context, 17f))
                    val markerOptions = MarkerOptions()
                    markerOptions.anchor(0.5f, 0.5f)
                    markerOptions.position(converter?.convert())
                    markerOptions.title(projectBean.projectSite)
                    markerOptions.icon(BitmapDescriptorFactory.fromBitmap(bitmap))
                    markerOptions.visible(true)
                    val marker = aMap?.addMarker(markerOptions)
                    marker?.setObject(projectBean)
                    marker?.let { markerList?.add(it) }
                    boundsBuilder.include(converter?.convert())
                }
                polylineHashMap?.set(projectBean.projectId, aMap?.addPolyline(polylineOptions) as Polyline)
            }
            if (markerList?.size == 1) {
                aMap?.animateCamera(CameraUpdateFactory.newLatLngZoom(markerList?.get(0)?.position, 11f))
            } else if (item_type == ITEM_TYPE_PROJECT_GROUP) {
                aMap?.animateCamera(CameraUpdateFactory.newLatLngBounds(boundsBuilder.build(), 200))
            }
        }

        myNativeView?.let { it ->
            LogUtils.Log("lxd      saveMyBitmap")
            saveMyBitmap("amapPhoto", createViewBitmap(it))
        }
    }

  
    private fun setSelectedPolyline(polyline: Polyline?, isClickLin: Boolean) {
        if (isClickLin) {
            restoreMarker()
        }
        val polylineId = polyline?.id
        for (key in polylineHashMap?.keys!!) {
            if (polylineHashMap?.get(key)?.id === polylineId) {
                if (!isSlideSwitchPage) {
                    alterViewPager(key)
                }
            }
        }
        uncheckPolyline()
        if (currentPolyline == null && addAPolyline == null
                || polylineId != currentPolyline?.id && polylineId != addAPolyline?.id) {
            val coorDinateIndx = (markerList!![pageSelected].getObject() as ProjectsBean).proSiteCoordinate.size / 2
            currentMarker = markerList!![pageSelected + coorDinateIndx]
            currentMarker?.showInfoWindow()
            val color = polyline?.color
            val polylineOptions = polyline?.options
            polylineOptions?.lineCapType(PolylineOptions.LineCapType.LineCapRound)
            context.let { polylineOptions?.color(ContextCompat.getColor(it, R.color.color_ffffff)) }
            polylineOptions?.width(UnitUtils.dp2px(context, 23f))
            polyline?.options = polylineOptions
            currentPolyline = polyline
            val addOptions = PolylineOptions()
            addOptions.lineCapType(PolylineOptions.LineCapType.LineCapRound)
            color?.let { addOptions.color(it) }
            addOptions.width(UnitUtils.dp2px(context, 8f))
            addOptions.addAll(polyline?.points)
            addAPolyline = aMap?.addPolyline(addOptions)
            aMap?.animateCamera(CameraUpdateFactory.newLatLngZoom(polylineOptions?.points?.get(0), 11f))
        }
    }

   
    private fun uncheckPolyline() {
        if (currentPolyline != null && addAPolyline != null) {
            currentPolyline?.options = addAPolyline?.options
            addAPolyline = null
            currentPolyline = null
        }
    }


    override fun getInfoWindow(marker: Marker): View? {
        val infoContent = layoutInflater?.inflate(
                R.layout.marker_info_window, null)
        infoContent?.let { render(marker, it) }
        return infoContent
    }

    
    override fun getInfoContents(marker: Marker): View? {
        val infoContent = layoutInflater?.inflate(R.layout.marker_info_window, null)
        infoContent?.let { render(marker, it) }
        return infoContent
    }

   
    fun render(marker: Marker, view: View) {
        val title = marker.title
        if ((marker.getObject() as ProjectsBean).siteType == 1) {
            view.findViewById<View>(R.id.marker_info_img).setBackgroundResource(R.mipmap.info_window)
        } else {
            view.findViewById<View>(R.id.marker_info_img).setBackgroundResource(R.mipmap.info_window_lin)
        }
        (view.findViewById<View>(R.id.marker_info_txt) as TextView).text = title
    }

  
    private fun showMarkerInfo(marker: Marker) {
        restoreMarker()
        uncheckPolyline()
        val markerProjects = marker.getObject() as ProjectsBean
        if (markerProjects.siteType == 1) {
            val bitmap = BitmapFactory.decodeResource(context.resources, R.mipmap.icon_marker)
           
            marker.setAnchor(0.5f, 0.83f)
            marker.setIcon(BitmapDescriptorFactory.fromBitmap(bitmap))
            marker.showInfoWindow()
            currentMarker = marker
            val projectsBean = currentMarker?.getObject() as ProjectsBean
            if (!isSlideSwitchPage) {
                alterViewPager(projectsBean.projectId)
            }
            aMap?.animateCamera(CameraUpdateFactory.newLatLngZoom(marker.position, 15f))
        } else {
            setSelectedPolyline(polylineHashMap!![markerProjects.projectId], false)
        }
    }

  
    private fun alterViewPager(projectId: Int) {
        isSlideSwitchPage = false
        if (item_type == ITEM_TYPE_PROJECT_GROUP) {
            currentDataList?.clear()
            currentDataList?.addAll(homeProjectList!![pageSelected].children)
            item_type = ITEM_TYPE_PROJECT
            cardPagerAdapter?.addItem(currentDataList)
            for (i in currentDataList?.indices?.reversed()!!) {
                val tempprojects = currentDataList?.get(i) as ProjectsBean
                if (projectId == tempprojects.projectId) {
                    pageSelected = i
                    viewPager?.currentItem = i
                    setRiskSum(tempprojects.projectRiskSum)
                }
            }
        } else {
            for (i in currentDataList?.indices?.reversed()!!) {
                val tempprojects = currentDataList?.get(i) as ProjectsBean
                if (projectId == tempprojects.projectId) {
                    pageSelected = i
                    viewPager?.currentItem = i
                    setRiskSum(tempprojects.projectRiskSum)
                }
            }
        }
        isSlideSwitchPage = true
    }

    private fun restoreMarker() {
        if (currentMarker != null) {
            val project = currentMarker?.getObject() as ProjectsBean
            val bitmap: Bitmap
            bitmap = if (project.siteType == 1) {
                drawCircle(getGroupColour(project.projectRiskSum), UnitUtils.dp2pxInt(context, 17f), UnitUtils.dp2pxInt(context, 17f))
            } else {
                drawCircles(UnitUtils.dp2pxInt(context, 17f), UnitUtils.dp2pxInt(context, 17f))
            }
            currentMarker?.setAnchor(0.5f, 0.5f)
            currentMarker?.setIcon(BitmapDescriptorFactory.fromBitmap(bitmap))
            currentMarker?.hideInfoWindow()
        }
        currentMarker = null
    }

    private fun drawCircle(color: Int, w: Int, h: Int): Bitmap {
        val config = Bitmap.Config.ARGB_8888
        val bitmap = Bitmap.createBitmap(w, h, config)
        val canvas = Canvas(bitmap)
        val paint = Paint(Paint.ANTI_ALIAS_FLAG)
        paint.color = color
        canvas.drawCircle(w / 2.toFloat(), h / 2.toFloat(), w / 2.toFloat(), paint)
        return bitmap
    }

    private fun drawCircles(w: Int, h: Int): Bitmap {
        val config = Bitmap.Config.ARGB_8888
        val bitmap = Bitmap.createBitmap(w, h, config)
        val canvas = Canvas(bitmap)
        val paint = Paint(Paint.ANTI_ALIAS_FLAG)
        context?.let { paint.color = ContextCompat.getColor(it, R.color.color_00000000) }
        canvas.drawCircle(w / 2.toFloat(), h / 2.toFloat(), w / 2.toFloat(), paint)
        return bitmap
    }

   
    private fun getGroupColour(riskSum: Int): Int {
        var color: Int
        if (currentGroupColour != null && currentGroupColour != "") {
            color = Color.parseColor(currentGroupColour)
        } else {
            color = Color.parseColor("#FF0000")
        }

        if (riskSum > 0) {
            context?.let { color = ContextCompat.getColor(it, R.color.color_b2ff0000) }
        }
        return color
    }

    private fun setRiskSum(riskSum: Int) {
        if (riskSum > 0) {
            warning_num?.visibility = View.VISIBLE
            warning_num?.text = "预警:$riskSum"
        } else {
            warning_num?.visibility = View.INVISIBLE
        }
    }

    override fun onDestroy() { 
        map_view?.onDestroy()
        if (mLocationClient != null) {
            mLocationClient?.stopLocation()
            mLocationClient?.onDestroy()
            mLocationClient = null
        }
    }

    override fun onResume() {
        map_view?.onResume()
    }

    override fun onPause() { 
        map_view?.onPause()
    }

    override fun onSaveInstanceState(outState: Bundle?) { 
        map_view?.onSaveInstanceState(outState)
    }

    companion object {
        protected const val ITEM_TYPE_PROJECT_GROUP = 1 
        protected const val ITEM_TYPE_PROJECT = 2
    }
}

This is the display effect:

Girl in a jacket | Girl in a jacket

@pedromassangocode
Copy link

Hi @l1x2d3
Can you please provide your flutter doctor -v, your flutter run --verbose and a minimal complete reproducible code sample?
Thank you

@pedromassangocode pedromassangocode added in triage Presently being triaged by the triage team waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds labels Sep 8, 2020
@l1x2d3
Copy link
Author
l1x2d3 commented Sep 8, 2020

@ l1x2d3,您好:
您能否提供您的flutter doctor -v,您的flutter run --verbose代码以及一个最小的完整可复制代码示例?
谢谢
Hello, thanks for the reply, I will update the code example, I am currently using the FLutter Model mode

@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 Sep 8, 2020
@l1x2d3
Copy link
Author
l1x2d3 commented Sep 8, 2020

@ l1x2d3,您好:
您能否提供您的flutter doctor -v,您的flutter run --verbose代码以及一个最小的完整可复制代码示例?
谢谢

flutter doctor -v:

微信图片_20200908160733

flutter run --verbose
2020-09-08 16:10:53.777 21251-21251/? I/com.tzyun.pip: Late-enabling -Xcheck:jni
2020-09-08 16:10:53.821 21251-21251/? E/com.tzyun.pip: Unknown bits set in runtime_flags: 0x8000
2020-09-08 16:10:53.823 21251-21251/? I/com.tzyun.pip: Reinit property: dalvik.vm.checkjni= false
2020-09-08 16:10:53.823 21251-21251/? I/com.tzyun.pip: ReInitProperties: persist.vm.debug.dumpapi= false
2020-09-08 16:10:53.831 21251-21251/? I/ActivityThread: preloadStatus:1
2020-09-08 16:10:53.833 21251-21251/? D/ActivityThread: Attach thread to application
2020-09-08 16:10:53.847 21251-21275/? I/ActivityThread: mSocketName: preloadoptcom.tzyun.pip
2020-09-08 16:10:53.847 21251-21275/? I/ActivityThread: initPreloadedSocked end mPreloadStatus 2
2020-09-08 16:10:53.849 21251-21275/? I/ActivityThread: before connect app.socketName:preloadoptcom.tzyun.pip
2020-09-08 16:10:53.849 21251-21275/? I/ActivityThread: before readint
2020-09-08 16:10:53.858 21251-21276/? D/HwFrameworkSecurityPartsFactory: HwFrameworkSecurityPartsFactory in.
2020-09-08 16:10:53.858 21251-21276/? I/HwFrameworkSecurityPartsFactory: add HwFrameworkSecurityPartsFactory to memory.
2020-09-08 16:10:53.858 21251-21276/? D/BehaviorCollectManager: hook process for AI virus second
2020-09-08 16:10:53.863 21251-21276/? I/BehaviorCollectManager: bindAnalyzerService: huawei.android.security.IAppBehaviorDataAnalyzer$Stub$Proxy@f07ac72 pid:21251
2020-09-08 16:10:54.050 21251-21275/? E/ActivityThread: connect IOException Try again
2020-09-08 16:10:54.050 21251-21275/? I/ActivityThread: connectContinuePreload end mPreloadStatus 3
2020-09-08 16:10:54.267 21251-21251/? I/com.tzyun.pip: QarthPatchMonintor::Init
2020-09-08 16:10:54.268 21251-21251/? I/com.tzyun.pip: QarthPatchMonintor::StartWatch
2020-09-08 16:10:54.268 21251-21251/? I/com.tzyun.pip: QarthPatchMonintor::WatchPackage: /data/hotpatch/fwkhotpatch/
2020-09-08 16:10:54.268 21251-21251/? I/com.tzyun.pip: QarthPatchMonintor::CheckAndWatchPatch: /data/hotpatch/fwkhotpatch/com.tzyun.pip
2020-09-08 16:10:54.268 21251-21251/? I/com.tzyun.pip: QarthPatchMonintor::CheckAndWatchPatch: /data/hotpatch/fwkhotpatch/all
2020-09-08 16:10:54.268 21251-21251/? I/com.tzyun.pip: QarthPatchMonintor::Run
2020-09-08 16:10:54.268 21251-21302/? I/com.tzyun.pip: QarthPatchMonintor::Reading
2020-09-08 16:10:54.269 21251-21302/? I/com.tzyun.pip: QarthPatchMonintor::CheckNotifyEvent
2020-09-08 16:10:54.269 21251-21302/? I/com.tzyun.pip: QarthPatchMonintor::CheckNotifyEvent before read
2020-09-08 16:10:54.269 21251-21276/? I/HwApiCacheMangerEx: apicache path=/storage/emulated/0 state=mounted key=com.tzyun.pip#10462#256
2020-09-08 16:10:54.269 21251-21276/? I/HwApiCacheMangerEx: need clear apicache,because volumes changed,oldCnt=0 newCnt=1
2020-09-08 16:10:54.269 21251-21276/? I/HwApiCacheMangerEx: apicache path=/storage/emulated/0 state=mounted key=com.tzyun.pip#10462#0
2020-09-08 16:10:54.269 21251-21276/? I/HwApiCacheMangerEx: need clear apicache,because volumes changed,oldCnt=1 newCnt=1
2020-09-08 16:10:54.273 21251-21251/? I/MultiDex: VM with version 2.1.0 has multidex support
2020-09-08 16:10:54.273 21251-21251/? I/MultiDex: Installing application
2020-09-08 16:10:54.273 21251-21251/? I/MultiDex: VM has multidex support, MultiDex support library is disabled.
2020-09-08 16:10:54.274 21251-21276/? I/AwareBitmapCacher: init processName:com.tzyun.pip pid=21251 uid=10462
2020-09-08 16:10:54.276 21251-21251/? I/HwApiCacheMangerEx: apicache path=/storage/emulated/0 state=mounted key=com.tzyun.pip#10462#256
2020-09-08 16:10:54.276 21251-21251/? I/HwApiCacheMangerEx: need clear apicache,because volumes changed,oldCnt=1 newCnt=1
2020-09-08 16:10:54.298 21251-21306/? I/ResourceExtractor: Found extracted resources res_timestamp-1-1599551771536
2020-09-08 16:10:54.306 21251-21251/? D/lxd:             PageRouter.init 开始
2020-09-08 16:10:54.308 21251-21251/? D/lxd:             FlutterBoost.instance().init 开始
2020-09-08 16:10:54.309 21251-21251/? D/lxd:             mPlatform.whenEngineStart()=1
2020-09-08 16:10:54.309 21251-21251/? D/lxd:             ARouter.init 开始
2020-09-08 16:10:54.321 21251-21251/? I/ActivityThread: finishPreloaded end mPreloadStatus 0
2020-09-08 16:10:54.324 21251-21251/? D/OpenGLRenderer: disableOutlineDraw is true
2020-09-08 16:10:54.327 21251-21311/? I/iGraphics: [0020080c] pn: com.tzyun.pip, p: 21251
2020-09-08 16:10:54.327 21251-21311/? I/iGraphics: [0030050c] PV 10
2020-09-08 16:10:54.327 21251-21311/? I/iGraphics: [0030050c] no element 'igfx'
2020-09-08 16:10:54.327 21251-21311/? I/iGraphics: [0030050c] LoadCloudParams lib file success.
2020-09-08 16:10:54.328 21251-21311/? E/Parcel: Reading a NULL string not supported here.
2020-09-08 16:10:54.332 21251-21311/? D/AwareLog: Game opt is enable
2020-09-08 16:10:54.334 21251-21251/? V/ActivityThread: callActivityOnCreate
2020-09-08 16:10:54.335 21251-21251/? D/lxd:             mPlatform.whenEngineStart()=1
2020-09-08 16:10:54.409 21251-21251/? D/lxd:             createEngine()=io.flutter.embedding.engine.FlutterEngine@fdd6146
2020-09-08 16:10:54.409 21251-21251/? D/lxd:             mRegistry=com.idlefish.flutterboost.BoostPluginRegistry@127565d
2020-09-08 16:10:54.409 21251-21251/? D/lxd:             registerPlugins
2020-09-08 16:10:54.417 21251-21251/? D/lxd:       mRegistrys   初始化完成
2020-09-08 16:10:54.419 21251-21251/? D/FlutterActivityAndFragmentDelegate: Setting up FlutterEngine.
2020-09-08 16:10:54.427 21251-21251/? V/HwWidgetFactory: : successes to get AllImpl object and return....
2020-09-08 16:10:54.438 21251-21251/? I/DecorView[]:  old windowMode:0 new windoMode:1
2020-09-08 16:10:54.441 21251-21251/? E/lxd: registerWith        com.pip/mapViewCallFlutter
2020-09-08 16:10:54.454 21251-21251/? D/ActivityThread: add activity client record, r= ActivityRecord{71b7ce7 token=android.os.BinderProxy@324d7a5 {com.tzyun.pip/com.tzyun.pip.MainActivity}} token= android.os.BinderProxy@324d7a5
2020-09-08 16:10:54.463 21251-21349/? I/flutter: Observatory listening on http://127.0.0.1:40647/HrleYXjdxlQ=/
2020-09-08 16:10:54.467 21251-21251/? E/FlutterBoost#: BoostFlutterView onAttach
2020-09-08 16:10:54.467 21251-21251/? D/FlutterView: Attaching to a FlutterEngine: io.flutter.embedding.engine.FlutterEngine@fdd6146
2020-09-08 16:10:54.476 21251-21251/? W/com.tzyun.pip: Accessing hidden method Landroid/view/accessibility/AccessibilityNodeInfo;->getSourceNodeId()J (greylist, reflection, allowed)
2020-09-08 16:10:54.476 21251-21251/? W/com.tzyun.pip: Accessing hidden method Landroid/view/accessibility/AccessibilityRecord;->getSourceNodeId()J (greylist, reflection, allowed)
2020-09-08 16:10:54.476 21251-21251/? W/com.tzyun.pip: Accessing hidden field Landroid/view/accessibility/AccessibilityNodeInfo;->mChildNodeIds:Landroid/util/LongArray; (greylist, reflection, allowed)
2020-09-08 16:10:54.476 21251-21251/? W/com.tzyun.pip: Accessing hidden method Landroid/util/LongArray;->get(I)J (greylist, reflection, allowed)
2020-09-08 16:10:54.478 21251-21251/? E/ImmerseTheme: current MANUFACTURER=huawei
2020-09-08 16:10:54.478 21251-21251/? E/ImmerseTheme: setStatusBarLightMode
2020-09-08 16:10:54.487 21251-21251/? I/DecorView[]:  old windowMode:1 new windoMode:1
2020-09-08 16:10:54.494 21251-21311/? D/OpenGLRenderer: disableOutlineDraw is true
2020-09-08 16:10:54.504 21251-21365/? D/HiTouch_PressGestureDetector: onAttached, package=com.tzyun.pip, windowType=1, mHiTouchRestricted=false
2020-09-08 16:10:54.511 21251-21311/? D/mali_winsys: EGLint new_window_surface(egl_winsys_display *, void *, EGLSurface, EGLConfig, egl_winsys_surface **, EGLBoolean) returns 0x3000
2020-09-08 16:10:54.516 21251-21329/? D/mali_winsys: EGLint new_window_surface(egl_winsys_display *, void *, EGLSurface, EGLConfig, egl_winsys_surface **, EGLBoolean) returns 0x3000
2020-09-08 16:10:54.589 21251-21311/? W/Gralloc3: mapper 3.x is not supported
2020-09-08 16:10:54.605 21251-21251/? I/HwViewRootImpl: removeInvalidNode jank list is null
2020-09-08 16:10:54.605 21251-21251/? E/FlutterBoost#: invoke method didInitPageContainer notImplemented
2020-09-08 16:10:54.605 21251-21251/? E/FlutterBoost#: invoke method didShowPageContainer notImplemented
2020-09-08 16:10:54.606 21251-21251/? D/DecorView: showOrHideHighlightView: hasFocus=true; winMode=1; isMrgNull=true
2020-09-08 16:10:54.606 21251-21251/? W/InputMethodManager: startInputReason = 1
2020-09-08 16:10:54.618 21251-21251/? W/InputMethodManager: startInputReason = 5
2020-09-08 16:10:55.209 21251-21329/com.tzyun.pip W/Gralloc3: allocator 3.x is not supported
2020-09-08 16:10:55.227 21251-21328/com.tzyun.pip I/flutter: FlutterBoost#ContainerObserver#2 didPush
2020-09-08 16:10:55.227 21251-21328/com.tzyun.pip I/flutter: FlutterBoost#BoostContainerLifeCycleObserver container:appMainPage lifeCycle:ContainerLifeCycle.Appear
2020-09-08 16:10:55.228 21251-21328/com.tzyun.pip I/flutter: FlutterBoost#native containner did show,
    manager dump:
    onstage#:
      {uniqueId=1599552654422-169069715,name=appMainPage}
    offstage#:
      {uniqueId=default,name=default}
2020-09-08 16:10:55.267 21251-21328/com.tzyun.pip I/flutter: FlutterBoost#ManagerNavigatorObserver didPush
2020-09-08 16:10:55.324 21251-21328/com.tzyun.pip I/flutter: FlutterBoost#build widget:AppMainPage for page:appMainPage(1599552654422-169069715)
2020-09-08 16:10:55.424 21251-21328/com.tzyun.pip I/flutter: lxd            _createNewAndroidView    _id=0
2020-09-08 16:10:55.676 21251-21428/com.tzyun.pip D/lxd: onReceiveClientId -> clientid = 3352264fa7404cbfc3d80a76bff39946
2020-09-08 16:10:55.698 21251-21328/com.tzyun.pip I/flutter: lxd      AndroidViewController  id=0        viewType=plugin.pip/nativeMapView        width=360.0        height=655.0
2020-09-08 16:10:55.780 21251-21251/com.tzyun.pip E/lxd:               myNativeView=android.widget.RelativeLayout{89c18f4 V.E...... ......I. 0,0-0,0}
2020-09-08 16:10:55.785 21251-21328/com.tzyun.pip I/flutter: FlutterBoost#onShownContainerChanged old:null now:1599552654422-169069715
2020-09-08 16:10:55.817 21251-21328/com.tzyun.pip I/flutter: FlutterBoost#ManagerNavigatorObserver didPush
2020-09-08 16:10:55.818 21251-21251/com.tzyun.pip I/HwApiCacheMangerEx: apicache path=/storage/emulated/0 state=mounted key=com.tzyun.pip#10462#0
2020-09-08 16:10:55.818 21251-21251/com.tzyun.pip I/HwApiCacheMangerEx: need clear apicache,because volumes changed,oldCnt=1 newCnt=1
2020-09-08 16:10:55.833 21251-21251/com.tzyun.pip E/lxd:   01 map_view=com.amap.api.maps.MapView{f552919 V.E...... ......I. 0,0-0,0 #7f080114 app:id/map_view}
2020-09-08 16:10:55.834 21251-21251/com.tzyun.pip E/lxd:  02  aMap=com.amap.api.maps.AMap@c1e4dde
2020-09-08 16:10:55.838 21251-21328/com.tzyun.pip I/flutter: 我是原生callFlutter的传参  =================    
    {function: sendClientId, params: 3352264fa7404cbfc3d80a76bff39946}
2020-09-08 16:10:55.850 21251-21251/com.tzyun.pip D/lxd:         MapViewFactory     view=com.tzyun.pip.mapview.MainMapView@99d928c
2020-09-08 16:10:55.854 21251-21251/com.tzyun.pip I/DecorView[]:  old windowMode:0 new windoMode:1
2020-09-08 16:10:55.858 21251-21251/com.tzyun.pip I/Presentation: Presentation is being dismissed because the display metrics have changed since it was created.
2020-09-08 16:10:55.869 21251-21441/com.tzyun.pip I/HiTouch_HiTouchSensor: HiTouch restricted: Sub windows restricted.
2020-09-08 16:10:55.870 21251-21441/com.tzyun.pip D/HiTouch_PressGestureDetector: onAttached, package=com.tzyun.pip, windowType=2037, mHiTouchRestricted=true
2020-09-08 16:10:55.881 21251-21311/com.tzyun.pip D/mali_winsys: EGLint new_window_surface(egl_winsys_display *, void *, EGLSurface, EGLConfig, egl_winsys_surface **, EGLBoolean) returns 0x3000
2020-09-08 16:10:55.887 21251-21431/com.tzyun.pip D/mali_winsys: EGLint new_window_surface(egl_winsys_display *, void *, EGLSurface, EGLConfig, egl_winsys_surface **, EGLBoolean) returns 0x3000
2020-09-08 16:10:55.908 21251-21438/com.tzyun.pip I/TelephonyManager: getCellLocation calling app is com.tzyun.pip
2020-09-08 16:10:55.958 21251-21438/com.tzyun.pip I/TelephonyManager: getAllCellInfo calling app is com.tzyun.pip
2020-09-08 16:10:55.963 21251-21438/com.tzyun.pip I/TelephonyManager: getAllCellInfo calling app is com.tzyun.pip
2020-09-08 16:10:55.968 21251-21431/com.tzyun.pip D/HwGalleryCacheManagerImpl: mIsEffect:false
2020-09-08 16:10:55.981 21251-21438/com.tzyun.pip W/com.tzyun.pip: Accessing hidden method Landroid/os/storage/StorageManager;->getVolumeList()[Landroid/os/storage/StorageVolume; (greylist, reflection, allowed)
2020-09-08 16:10:55.981 21251-21438/com.tzyun.pip W/com.tzyun.pip: Accessing hidden method Landroid/os/storage/StorageVolume;->getPath()Ljava/lang/String; (greylist, reflection, allowed)
2020-09-08 16:10:55.985 21251-21438/com.tzyun.pip I/HwApiCacheMangerEx: apicache path=/storage/emulated/0 state=mounted key=com.tzyun.pip#10462#256
2020-09-08 16:10:55.985 21251-21438/com.tzyun.pip I/HwApiCacheMangerEx: need clear apicache,because volumes changed,oldCnt=1 newCnt=1
2020-09-08 16:10:55.985 21251-21438/com.tzyun.pip I/HwApiCacheMangerEx: apicache path=/storage/emulated/0 state=mounted key=com.tzyun.pip#10462#0
2020-09-08 16:10:55.986 21251-21438/com.tzyun.pip I/HwApiCacheMangerEx: need clear apicache,because volumes changed,oldCnt=1 newCnt=1
2020-09-08 16:10:55.987 21251-21438/com.tzyun.pip I/HwApiCacheMangerEx: apicache path=/storage/emulated/0 state=mounted key=com.tzyun.pip#10462#256
2020-09-08 16:10:55.987 21251-21438/com.tzyun.pip I/HwApiCacheMangerEx: need clear apicache,because volumes changed,oldCnt=1 newCnt=1
2020-09-08 16:10:55.996 21251-21328/com.tzyun.pip I/flutter: lxd      AndroidViewController  _create        _textureId=0
2020-09-08 16:10:56.000 21251-21457/com.tzyun.pip D/NetworkSecurityConfig: No Network Security Config specified, using platform default
2020-09-08 16:10:56.015 21251-21457/com.tzyun.pip I/TelephonyManager: getCellLocation calling app is com.tzyun.pip
2020-09-08 16:10:56.046 21251-21431/com.tzyun.pip W/libEGL: EGLNativeWindowType 0xb745c808 disconnect failed
2020-09-08 16:10:56.046 21251-21431/com.tzyun.pip W/GLSurfaceView: Warning, !readyToDraw() but waiting for draw finished! Early reporting draw finished.
2020-09-08 16:10:56.046 21251-21457/com.tzyun.pip I/TelephonyManager: getCellLocation calling app is com.tzyun.pip
2020-09-08 16:10:56.050 21251-21311/com.tzyun.pip W/libEGL: EGLNativeWindowType 0xc3450648 disconnect failed
2020-09-08 16:10:56.105 21251-21457/com.tzyun.pip I/TelephonyManager: getCellLocation calling app is com.tzyun.pip
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: ══╡ EXCEPTION CAUGHT BY IMAGE RESOURCE SERVICE ╞════════════════════════════════════════════════════
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: The following _Exception was thrown resolving an image codec:
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: Exception: NetworkImage is an empty file: http://ip2.tztos.cn:8793/fileService/file/download?fileId=
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: When the exception was thrown, this was the stack:
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #0      NetworkImage._loadAsync (package:flutter/src/painting/_network_image_io.dart:102:9)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: <asynchronous suspension>
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #1      NetworkImage.load (package:flutter/src/painting/_network_image_io.dart:48:14)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #2      ImageProvider.resolve.<anonymous closure>.<anonymous closure>.<anonymous closure> (package:flutter/src/painting/image_provider.dart:316:48)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #3      ImageCache.putIfAbsent (package:flutter/src/painting/image_cache.dart:160:22)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #4      ImageProvider.resolve.<anonymous closure>.<anonymous closure> (package:flutter/src/painting/image_provider.dart:316:25)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #5      SynchronousFuture.then (package:flutter/src/foundation/synchronous_future.dart:38:29)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #6      ImageProvider.resolve.<anonymous closure> (package:flutter/src/painting/image_provider.dart:313:11)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #10     ImageProvider.resolve (package:flutter/src/painting/image_provider.dart:305:16)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #11     _ImageState._resolveImage (package:flutter/src/widgets/image.dart:951:20)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #12     _ImageState.didChangeDependencies (package:flutter/src/widgets/image.dart:908:5)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #13     StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4086:12)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #14     ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #15     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #16     Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #17     SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #18     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #19     Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #20     ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #21     Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #22     ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #23     ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #24     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #25     Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #26     SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #27     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #28     Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #29     SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #30     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #31     Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #32     SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #33     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #34     Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #35     SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #36     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #37     Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #38     SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #39     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #40     Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #41     ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #42     Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #43     ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #44     ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:56.307 21251-21328/com.tzyun.pip I/flutter: #45     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #46     MultiChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5233:32)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #47     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #48     Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #49     ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #50     Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #51     ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #52     ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #53     ParentDataElement.mount (package:flutter/src/widgets/framework.dart:4314:11)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #54     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #55     MultiChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5233:32)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #56     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #57     Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #58     SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #59     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #60     Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #61     ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #62     Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #63     ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #64     ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #65     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #66     Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #67     SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #68     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #69     Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #70     ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #71     Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #72     ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #73     ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #74     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #75     Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #76     SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #77     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #78     Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #79     ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #80     Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #81     ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #82     StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #83     ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #84     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #85     Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #86     ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #87     Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #88     ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #89     ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #90     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #91     MultiChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5233:32)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #92     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #93     Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #94     SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #95     Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #96     Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #97     ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #98     Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #99     ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #100    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #101    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #102    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #103    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #104    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #105    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #106    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #107    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #108    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #109    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #110    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #111    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #112    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #113    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #114    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #115    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #116    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #117    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #118    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #119    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #120    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #121    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #122    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #123    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #124    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #125    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #126    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #127    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #128    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #129    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.308 21251-21328/com.tzyun.pip I/flutter: #130    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.309 21251-21328/com.tzyun.pip I/flutter: #131    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:56.309 21251-21328/com.tzyun.pip I/flutter: #132    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.309 21251-21328/com.tzyun.pip I/flutter: #133    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.309 21251-21328/com.tzyun.pip I/flutter: #134    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:56.309 21251-21328/com.tzyun.pip I/flutter: #135    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:56.309 21251-21328/com.tzyun.pip I/flutter: #136    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:56.309 21251-21328/com.tzyun.pip I/flutter: #137    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:56.309 21251-21328/com.tzyun.pip I/flutter: #138    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:56.309 21251-21328/com.tzyun.pip I/flutter: #139    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:56.309 21251-21328/com.tzyun.pip I/flutter: #140    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:56.309 21251-21328/com.tzyun.pip I/flutter: #141    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:56.309 21251-21328/com.tzyun.pip I/flutter: #142    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:56.316 21251-21328/com.tzyun.pip I/flutter: 请求接口 :【http://ip2.tztos.cn:8860/mobBaseService/message/getMyNoticeCount】
    请求参数 :【{}】
    返回数据 :【{"data":20,"message":"success","status":1}】
2020-09-08 16:10:56.362 21251-21327/com.tzyun.pip E/AwareLog: eglSlice: report time too small
2020-09-08 16:10:56.405 21251-21329/com.tzyun.pip I/chatty: uid=10462(com.tzyun.pip) Thread-28 identical 1 line
2020-09-08 16:10:56.691 21251-21329/com.tzyun.pip I/chatty: uid=10462(com.tzyun.pip) Thread-28 identical 1 line
2020-09-08 16:10:56.753 21251-21329/com.tzyun.pip I/chatty: uid=10462(com.tzyun.pip) Thread-28 identical 2 lines
2020-09-08 16:10:57.049 21251-21470/com.tzyun.pip I/TelephonyManager: getCellLocation calling app is com.tzyun.pip
2020-09-08 16:10:57.072 21251-21470/com.tzyun.pip I/TelephonyManager: getAllCellInfo calling app is com.tzyun.pip
2020-09-08 16:10:57.075 21251-21470/com.tzyun.pip I/TelephonyManager: getAllCellInfo calling app is com.tzyun.pip
2020-09-08 16:10:57.101 21251-21470/com.tzyun.pip I/TelephonyManager: getCellLocation calling app is com.tzyun.pip
2020-09-08 16:10:57.113 21251-21470/com.tzyun.pip I/TelephonyManager: getCellLocation calling app is com.tzyun.pip
2020-09-08 16:10:57.129 21251-21470/com.tzyun.pip I/TelephonyManager: getCellLocation calling app is com.tzyun.pip
2020-09-08 16:10:57.220 21251-21328/com.tzyun.pip I/flutter: 请求接口 :【http://ip2.tztos.cn:8860/mobHomePageService/mobHomePage/getStatPlanProValueByUser】
    请求参数 :【{}】
    返回数据 :【{"data":[{"allActualProValue":1049.1,"weekStatProPlanProValue":0.0,"colour":"#FF0000","allPlanProValue":42011.0,"monthStatProPlanProValue":0.0,"children":[{"allActualProValue":979.1,"weekStatProPlanProValue":0.0,"allPlanProValue":41901.0,"monthStatProPlanProValue":0.0,"yearStatProPlanProValue":565.0,"percentage":0.0234,"proSiteCoordinate":[{"projectSiteName":"无锡地铁","latitude":"31.922252","siteType":1,"longitude":"120.295749"}],"projectSite":"无锡地铁","projectSiteId":92,"projectId":59,"siteType":1},{"allActualProValue":0.0,"weekStatProPlanProValue":0.0,"allPlanProValue":0.0,"monthStatProPlanProValue":0.0,"yearStatProPlanProValue":0.0,"percentage":0.0,"proSiteCoordinate":[{"projectSiteName
2020-09-08 16:10:57.220 21251-21328/com.tzyun.pip I/flutter: ":"123213123213","latitude":"","siteType":1,"longitude":""}],"projectSite":"123213123213","projectSiteId":104,"projectId":59,"siteType":1},{"allActualProValue":70.0,"weekStatProPlanProValue":0.0,"allPlanProValue":110.0,"monthStatProPlanProValue":0.0,"yearStatProPlanProValue":0.0,"percentage":0.6364,"proSiteCoordinate":[{"projectSiteName":"测试标段","latitude":"","siteType":1,"longitude":""}],"projectSite":"测试标段","projectSiteId":106,"projectId":59,"siteType":1}],"yearStatProPlanProValue":565.0,"percentage":0.025,"projectName":"2020060111","projectId":59},{"allActualProValue":0.0,"weekStatProPlanProValue":0.0,"colour":"","allPlanProValue":0.0,"monthStatProPlanProValue":0.0,"children":[{"allActualProValue":0.0,"weekStatProPlanProValue":0.0,"allPlanProValue":0.0,"monthStatProPlanProValue":0.0,"yea
2020-09-08 16:10:57.220 21251-21328/com.tzyun.pip I/flutter: rStatProPlanProValue":0.0,"percentage":0.0,"proSiteCoordinate":[{"projectSiteName":"yushl测试工点01","latitude":"30.960429","siteType":1,"longitude":"120.107752"}],"projectSite":"yushl测试工点01","projectSiteId":113,"projectId":64,"siteType":1}],"yearStatProPlanProValue":0.0,"percentage":0.0,"projectName":"余少林测试项目","projectId":64}],"message":"success","status":1}】
2020-09-08 16:10:57.310 21251-21328/com.tzyun.pip I/flutter: #143    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:57.310 21251-21328/com.tzyun.pip I/flutter: #144    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.310 21251-21328/com.tzyun.pip I/flutter: #145    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.310 21251-21328/com.tzyun.pip I/flutter: #146    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:57.310 21251-21328/com.tzyun.pip I/flutter: #147    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.310 21251-21328/com.tzyun.pip I/flutter: #148    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.310 21251-21328/com.tzyun.pip I/flutter: #149    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:57.311 21251-21328/com.tzyun.pip I/flutter: #150    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.311 21251-21328/com.tzyun.pip I/flutter: #151    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.311 21251-21328/com.tzyun.pip I/flutter: #152    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:57.311 21251-21328/com.tzyun.pip I/flutter: #153    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.311 21251-21328/com.tzyun.pip I/flutter: #154    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.311 21251-21328/com.tzyun.pip I/flutter: #155    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:57.311 21251-21328/com.tzyun.pip I/flutter: #156    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.311 21251-21328/com.tzyun.pip I/flutter: #157    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.311 21251-21328/com.tzyun.pip I/flutter: #158    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:57.311 21251-21328/com.tzyun.pip I/flutter: #159    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:57.312 21251-21328/com.tzyun.pip I/flutter: #160    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:57.312 21251-21328/com.tzyun.pip I/flutter: #161    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:57.312 21251-21328/com.tzyun.pip I/flutter: #162    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #163    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #164    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #165    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #166    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #167    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #168    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #169    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #170    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #171    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #172    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #173    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #174    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #175    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #176    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #177    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #178    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #179    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #180    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #181    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #182    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #183    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #184    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #185    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #186    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #187    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #188    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #189    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #190    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #191    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #192    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #193    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:57.320 21251-21328/com.tzyun.pip I/flutter: #194    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #195    MultiChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5233:32)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #196    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #197    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #198    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #199    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #200    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #201    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #202    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #203    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #204    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #205    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #206    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #207    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #208    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #209    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #210    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #211    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #212    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #213    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #214    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #215    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #216    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #217    ParentDataElement.mount (package:flutter/src/widgets/framework.dart:4314:11)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #218    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #219    MultiChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5233:32)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #220    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #221    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #222    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #223    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #224    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #225    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #226    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #227    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #228    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #229    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #230    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #231    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #232    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #233    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #234    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #235    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #236    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #237    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #238    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #239    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #240    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #241    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #242    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #243    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #244    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #245    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #246    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #247    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #248    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #249    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #250    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #251    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #252    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #253    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #254    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #255    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:57.321 21251-21328/com.tzyun.pip I/flutter: #256    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #257    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #258    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #259    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #260    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #261    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #262    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #263    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #264    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #265    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #266    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #267    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #268    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #269    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #270    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #271    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #272    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #273    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #274    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #275    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #276    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #277    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #278    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #279    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #280    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #281    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #282    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #283    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #284    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #285    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #286    MultiChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5233:32)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #287    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #288    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:57.322 21251-21328/com.tzyun.pip I/flutter: #289    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:57.332 21251-21328/com.tzyun.pip I/flutter: FlutterBoost#ManagerNavigatorObserver didPop
2020-09-08 16:10:57.333 21251-21328/com.tzyun.pip I/flutter: 请求接口 :【http://ip2.tztos.cn:8860/baseService/user/queryUserById】
    请求参数 :【{}】
    返回数据 :【{"data":{"orgNames":"20200601","firstName":"L","headImgId":"0","headImgName":"","post":"","headImgPath":"/img/head/l.jpg","sex":"","mobile":"15026664289","userName":"吕晓东","userId":253,"account":"lxd","email":""},"message":"success","status":1}】
2020-09-08 16:10:57.738 21251-21327/com.tzyun.pip E/AwareLog: eglSlice: report time too small
2020-09-08 16:10:58.325 21251-21328/com.tzyun.pip I/flutter: #290    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.325 21251-21328/com.tzyun.pip I/flutter: #291    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.325 21251-21328/com.tzyun.pip I/flutter: #292    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:58.325 21251-21328/com.tzyun.pip I/flutter: #293    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.325 21251-21328/com.tzyun.pip I/flutter: #294    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.325 21251-21328/com.tzyun.pip I/flutter: #295    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:58.325 21251-21328/com.tzyun.pip I/flutter: #296    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:58.325 21251-21328/com.tzyun.pip I/flutter: #297    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:58.325 21251-21328/com.tzyun.pip I/flutter: #298    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:58.325 21251-21328/com.tzyun.pip I/flutter: #299    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.325 21251-21328/com.tzyun.pip I/flutter: #300    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.325 21251-21328/com.tzyun.pip I/flutter: #301    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:58.325 21251-21328/com.tzyun.pip I/flutter: #302    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:58.325 21251-21328/com.tzyun.pip I/flutter: #303    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:58.325 21251-21328/com.tzyun.pip I/flutter: #304    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:58.325 21251-21328/com.tzyun.pip I/flutter: #305    ParentDataElement.mount (package:flutter/src/widgets/framework.dart:4314:11)
2020-09-08 16:10:58.325 21251-21328/com.tzyun.pip I/flutter: #306    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.325 21251-21328/com.tzyun.pip I/flutter: #307    MultiChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5233:32)
2020-09-08 16:10:58.325 21251-21328/com.tzyun.pip I/flutter: #308    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.325 21251-21328/com.tzyun.pip I/flutter: #309    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.325 21251-21328/com.tzyun.pip I/flutter: #310    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:58.325 21251-21328/com.tzyun.pip I/flutter: #311    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #312    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #313    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #314    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #315    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #316    MultiChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5233:32)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #317    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #318    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #319    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #320    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #321    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #322    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #323    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #324    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #325    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #326    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #327    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #328    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #329    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #330    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #331    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #332    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #333    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #334    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #335    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #336    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #337    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #338    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #339    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #340    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #341    ParentDataElement.mount (package:flutter/src/widgets/framework.dart:4314:11)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #342    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #343    MultiChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5233:32)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #344    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #345    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #346    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #347    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #348    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #349    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #350    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #351    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #352    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #353    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #354    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #355    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #356    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #357    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #358    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #359    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #360    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #361    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #362    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #363    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #364    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #365    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #366    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #367    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #368    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #369    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #370    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #371    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #372    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:58.326 21251-21328/com.tzyun.pip I/flutter: #373    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #374    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #375    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #376    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #377    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #378    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #379    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #380    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #381    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #382    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #383    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #384    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #385    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #386    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #387    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #388    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #389    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #390    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #391    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #392    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #393    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #394    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #395    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #396    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #397    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #398    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #399    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #400    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #401    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #402    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #403    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #404    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #405    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #406    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #407    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #408    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #409    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #410    MultiChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5233:32)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #411    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #412    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #413    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #414    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #415    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #416    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #417    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #418    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #419    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #420    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #421    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #422    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #423    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #424    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #425    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #426    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #427    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:58.327 21251-21328/com.tzyun.pip I/flutter: #428    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:58.328 21251-21328/com.tzyun.pip I/flutter: #429    ParentDataElement.mount (package:flutter/src/widgets/framework.dart:4314:11)
2020-09-08 16:10:58.328 21251-21328/com.tzyun.pip I/flutter: #430    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.328 21251-21328/com.tzyun.pip I/flutter: #431    MultiChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5233:32)
2020-09-08 16:10:58.328 21251-21328/com.tzyun.pip I/flutter: #432    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:58.328 21251-21328/com.tzyun.pip I/flutter: #433    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:58.328 21251-21328/com.tzyun.pip I/flutter: #434    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:58.328 21251-21328/com.tzyun.pip I/flutter: #435    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:58.510 21251-21470/com.tzyun.pip I/TelephonyManager: getCellLocation calling app is com.tzyun.pip
2020-09-08 16:10:58.524 21251-21470/com.tzyun.pip I/TelephonyManager: getCellLocation calling app is com.tzyun.pip
2020-09-08 16:10:58.538 21251-21470/com.tzyun.pip I/TelephonyManager: getCellLocation calling app is com.tzyun.pip
2020-09-08 16:10:58.761 21251-21327/com.tzyun.pip E/AwareLog: eglSlice: report time too small
2020-09-08 16:10:59.275 21251-21251/com.tzyun.pip I/AwareBitmapCacher: init lrucache size: 2097152 pid=21251
2020-09-08 16:10:59.330 21251-21328/com.tzyun.pip I/flutter: #436    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:59.330 21251-21328/com.tzyun.pip I/flutter: #437    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:59.330 21251-21328/com.tzyun.pip I/flutter: #438    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:59.330 21251-21328/com.tzyun.pip I/flutter: #439    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.330 21251-21328/com.tzyun.pip I/flutter: #440    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.330 21251-21328/com.tzyun.pip I/flutter: #441    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:59.330 21251-21328/com.tzyun.pip I/flutter: #442    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.330 21251-21328/com.tzyun.pip I/flutter: #443    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.330 21251-21328/com.tzyun.pip I/flutter: #444    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:59.330 21251-21328/com.tzyun.pip I/flutter: #445    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:59.330 21251-21328/com.tzyun.pip I/flutter: #446    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:59.330 21251-21328/com.tzyun.pip I/flutter: #447    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:59.330 21251-21328/com.tzyun.pip I/flutter: #448    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.330 21251-21328/com.tzyun.pip I/flutter: #449    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #450    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #451    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #452    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #453    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #454    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #455    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #456    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #457    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #458    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #459    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #460    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #461    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #462    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #463    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #464    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #465    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #466    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #467    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #468    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #469    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #470    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #471    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #472    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #473    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #474    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #475    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #476    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #477    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #478    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #479    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #480    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #481    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #482    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #483    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #484    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #485    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #486    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #487    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #488    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #489    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #490    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #491    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #492    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #493    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #494    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #495    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #496    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #497    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #498    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #499    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #500    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #501    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #502    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #503    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #504    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #505    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #506    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #507    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:59.331 21251-21328/com.tzyun.pip I/flutter: #508    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #509    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #510    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #511    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #512    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #513    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #514    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #515    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #516    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #517    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #518    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #519    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #520    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #521    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #522    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #523    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #524    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #525    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #526    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #527    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #528    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #529    MultiChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5233:32)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #530    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #531    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #532    _TheatreElement.mount (package:flutter/src/widgets/overlay.dart:593:16)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #533    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.332 21251-21328/com.tzyun.pip I/flutter: #534    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #535    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #536    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #537    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #538    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #539    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #540    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #541    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #542    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #543    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #544    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #545    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #546    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #547    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #548    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #549    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #550    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #551    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #552    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #553    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #554    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #555    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #556    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #557    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #558    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #559    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #560    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #561    SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #562    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #563    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #564    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #565    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #566    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #567    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #568    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #569    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #570    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #571    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #572    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #573    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #574    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #575    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #576    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #577    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #578    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #579    ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #580    StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
2020-09-08 16:10:59.333 21251-21328/com.tzyun.pip I/flutter: #581    ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
2020-09-08 16:10:59.850 21251-21327/com.tzyun.pip E/AwareLog: eglSlice: report time too small
2020-09-08 16:11:00.336 21251-21328/com.tzyun.pip I/flutter: #582    Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
2020-09-08 16:11:00.336 21251-21328/com.tzyun.pip I/flutter: #583    Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
2020-09-08 16:11:00.336 21251-21328/com.tzyun.pip I/flutter: #584    RenderObjectElement.updateChildren (package:flutter/src/widgets/framework.dart:4910:32)
2020-09-08 16:11:00.336 21251-21328/com.tzyun.pip I/flutter: #585    MultiChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:5243:17)
2020-09-08 16:11:00.336 21251-21328/com.tzyun.pip I/flutter: #586    Element.updateChild (package:flutter/src/widgets/framework.dart:2893:15)
2020-09-08 16:11:00.336 21251-21328/com.tzyun.pip I/flutter: #587    _TheatreElement.update (package:flutter/src/widgets/overlay.dart:607:16)
2020-09-08 16:11:00.336 21251-21328/com.tzyun.pip I/flutter: #588    Element.updateChild (package:flutter/src/widgets/framework.dart:2893:15)
2020-09-08 16:11:00.336 21251-21328/com.tzyun.pip I/flutter: #589    ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
2020-09-08 16:11:00.336 21251-21328/com.tzyun.pip I/flutter: #590    Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
2020-09-08 16:11:00.336 21251-21328/com.tzyun.pip I/flutter: #591    BuildOwner.buildScope (package:flutter/src/widgets/framework.dart:2348:33)
2020-09-08 16:11:00.336 21251-21328/com.tzyun.pip I/flutter: #592    WidgetsBinding.drawFrame (package:flutter/src/widgets/binding.dart:760:20)
2020-09-08 16:11:00.336 21251-21328/com.tzyun.pip I/flutter: #593    RendererBinding._handlePersistentFrameCallback (package:flutter/src/rendering/binding.dart:280:5)
2020-09-08 16:11:00.336 21251-21328/com.tzyun.pip I/flutter: #594    SchedulerBinding._invokeFrameCallback (package:flutter/src/scheduler/binding.dart:1033:15)
2020-09-08 16:11:00.336 21251-21328/com.tzyun.pip I/flutter: #595    SchedulerBinding.handleDrawFrame (package:flutter/src/scheduler/binding.dart:975:9)
2020-09-08 16:11:00.336 21251-21328/com.tzyun.pip I/flutter: #596    SchedulerBinding._handleDrawFrame (package:flutter/src/scheduler/binding.dart:891:5)
2020-09-08 16:11:00.336 21251-21328/com.tzyun.pip I/flutter: #600    _invoke (dart:ui/hooks.dart:249:10)
2020-09-08 16:11:00.336 21251-21328/com.tzyun.pip I/flutter: #601    _drawFrame (dart:ui/hooks.dart:207:3)
2020-09-08 16:11:00.336 21251-21328/com.tzyun.pip I/flutter: (elided 6 frames from package dart:async)
2020-09-08 16:11:00.336 21251-21328/com.tzyun.pip I/flutter: Image provider: NetworkImage("http://ip2.tztos.cn:8793/fileService/file/download?fileId=", scale:
2020-09-08 16:11:00.336 21251-21328/com.tzyun.pip I/flutter:   1.0)
2020-09-08 16:11:00.336 21251-21328/com.tzyun.pip I/flutter: Image key: NetworkImage("http://ip2.tztos.cn:8793/fileService/file/download?fileId=", scale: 1.0)
2020-09-08 16:11:00.336 21251-21328/com.tzyun.pip I/flutter: ════════════════════════════════════════════════════════════════════════════════════════════════════
2020-09-08 16:11:00.336 21251-21328/com.tzyun.pip I/flutter: Another exception was thrown: Exception: Could not instantiate image codec.
2020-09-08 16:11:01.023 21251-21327/com.tzyun.pip E/AwareLog: eglSlice: report time too small
2020-09-08 16:11:02.079 21251-21327/com.tzyun.pip E/AwareLog: eglSlice: report time too small
2020-09-08 16:11:03.238 21251-21327/com.tzyun.pip E/AwareLog: eglSlice: report time too small
2020-09-08 16:11:04.395 21251-21327/com.tzyun.pip E/AwareLog: eglSlice: report time too small
2020-09-08 16:11:05.435 21251-21327/com.tzyun.pip E/AwareLog: eglSlice: report time too small
2020-09-08 16:11:06.593 21251-21327/com.tzyun.pip E/AwareLog: eglSlice: report time too small
2020-09-08 16:11:07.683 21251-21327/com.tzyun.pip E/AwareLog: eglSlice: report time too small

@pedromassangocode pedromassangocode added the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Sep 8, 2020
@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 Sep 8, 2020
@pedromassangocode
Copy link

Hi @l1x2d3
Could you please run flutter upgrade --force.
If the issue persists, please provide your updated flutter doctor -v, your flutter run --verbose and a minimal reproducible code sample. You can share a reproducible sample project by pushing it to GitHub and share the repository link here.
Thank you

@pedromassangocode pedromassangocode added the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Sep 8, 2020
@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 Sep 8, 2020
@l1x2d3
Copy link
Author
l1x2d3 commented Sep 8, 2020

Hi @l1x2d3
Could you please run flutter upgrade --force.
If the issue persists, please provide your updated flutter doctor -v, your flutter run --verbose and a minimal reproducible code sample. You can share a reproducible sample project by pushing it to GitHub and share the repository link here.
Thank you
Ok i try

@l1x2d3
Copy link
Author
l1x2d3 commented Sep 8, 2020

Hi @l1x2d3
Could you please run flutter upgrade --force.
If the issue persists, please provide your updated flutter doctor -v, your flutter run --verbose and a minimal reproducible code sample. You can share a reproducible sample project by pushing it to GitHub and share the repository link here.
Thank you
Ok i try

Hello, which version is the most stable now

@pedromassangocode
Copy link

Hi
1.20.2 is the most stable version, just run the command above and it will upgrade it for you.

@pedromassangocode pedromassangocode added the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Sep 8, 2020
@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 Sep 8, 2020
@l1x2d3
Copy link
Author
l1x2d3 commented Sep 8, 2020

Hi
1.20.2 is the most stable version, just run the command above and it will upgrade it for you.

Okay thank you

@pedromassangocode pedromassangocode added the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Sep 8, 2020
@derolf
Copy link
derolf commented Oct 9, 2020

Similar issues on TB-X505F

@no-response
Copy link
no-response bot commented Oct 9, 2020

Without additional information, we are unfortunately not sure how to resolve this issue. We are therefore reluctantly going to close this bug for now. Please don't hesitate to comment on the bug if you have any more information for us; we will reopen it right away!
Thanks for your contribution.

@no-response no-response bot closed this as completed Oct 9, 2020
@pedromassangocode pedromassangocode removed the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Oct 21, 2020
@l1x2d3
Copy link
Author
l1x2d3 commented Nov 3, 2020

TB-X505F上的类似问题

Hi
1.20.2是最稳定的版本,只需运行上面的命令,并为您升级。

好的谢谢你

Hi
1.20.2是最稳定的版本,只需运行上面的命令,并为您升级。

Hello! I used the v1.12.13 version after the upgrade. After the upgrade, I found that it did not help the problem I encountered. After solving other problems, I found that the AndroidView problem was also solved, so I think it should be mine There was a problem with the routing management, which caused the page to be considered as non-existent when the AndroidView callback displayed refreshed. Thank you very much for your suggestions and help, thank you!

@github-actions
Copy link

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.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Aug 10, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
in triage Presently being triaged by the triage team
Projects
None yet
Development

No branches or pull requests

3 participants