Git Product home page Git Product logo

Comments (3)

g-apparence avatar g-apparence commented on May 16, 2024

Duplicate of #60

from camerawesome.

g-apparence avatar g-apparence commented on May 16, 2024

Hi,
here is the method that makes this

private void _handleGetTextures(MethodCall call, Result result) {
    if(mCameraPreview == null) {
      result.error("MUST_CALL_INIT", "", "");
      return;
    }
    try {
        long id = mCameraPreview.getFlutterTexture();
        result.success(id);
    } catch (RuntimeException e) {
        result.error("TEXTURE_NOT_FOUND", "cannot find texture", "");
    }
}

The error is just that initialization takes much time. So to reproduce it I simply made the init method much slower.
Flutter start showing our widget before initialization ends, so Flutter FutureBuilder gets an error and shows you a red screen.
As it's only from platform it's not in your console. In release mode Flutter won't show any red screen from futureBuilder.

I can remove this error but I would prefer keeping it. In release mode this error should not be seen.
To prevent you and stop fearing it, I'll prevent the build from our widget if we are not fully initialized.

from camerawesome.

Technorocker avatar Technorocker commented on May 16, 2024

How are you not getting an error for this line

ValueNotifier<Size> _photoSize = ValueNotifier(null);

Im getting "The argument type'Null' can't be assigned tot he parameter type 'Size' yet its in the example code and little code section on the readme page. "

from camerawesome.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.