Code Monkey home page Code Monkey logo

Comments (4)

hanskokx avatar hanskokx commented on May 26, 2024 2

I ended up with a LayoutBuilder, which did the trick. Nice catch. This feels super messy to me, but it works. Thanks for the assist :)

from backdrop.

daadu avatar daadu commented on May 26, 2024 1

This error is because of passing wrong context to Backdrop.of.

You need to put the backLayer part in a custom widget or a workaround would be wrap the ListView around LayoutBuilder and pass the context from LayoutBuilder to Backdrop.of

from backdrop.

daadu avatar daadu commented on May 26, 2024

This looks like a custom logic not suitable for BackdropNavigationBackLayer. BackdropNavigationBackLayer is designed for simple navigation scenario.

Having said that, your code looks almost done, replace BackdropNavigationBackLayer with ListView or ListView.builder and that should do the job. I guess!

PS: You can call Backdrop.of(context).showFrontLayer() after setState() in onTap, to show the front layer

from backdrop.

hanskokx avatar hanskokx commented on May 26, 2024

PS: You can call Backdrop.of(context).showFrontLayer() after setState() in onTap, to show the front layer

Doesn't appear to be working.

ListTile(
  title: Text("Test"),
  onTap: () {
    setState(() => _currentIndex = 0);
    Backdrop.of(context).showFrontLayer();
  },
),
════════ Exception caught by gesture ═══════════════════════════════════════════
The following NoSuchMethodError was thrown while handling a gesture:
The getter 'data' was called on null.
Receiver: null
Tried calling: data

When the exception was thrown, this was the stack
#0      Object.noSuchMethod  (dart:core-patch/object_patch.dart:53:5)
#1      Backdrop.of 
package:backdrop/backdrop.dart:27
#2      _MainPageState.build.<anonymous closure> 
package:t4c_companion/main.dart:129
#3      _InkResponseState._handleTap 
package:flutter/…/material/ink_well.dart:779
#4      _InkResponseState.build.<anonymous closure> 
package:flutter/…/material/ink_well.dart:862

from backdrop.

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.