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

ADD breadcrumbs should show location inside function calls #274

Open
allanlaal opened this issue Feb 17, 2024 · 0 comments
Open

ADD breadcrumbs should show location inside function calls #274

allanlaal opened this issue Feb 17, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@allanlaal
Copy link

since flutter is a mess of method(calling(another(method())) "stairs", it would be helpful to see where you are in that structure in breadcrumbs

current:
Scene > build()

expected:
Scene > build() > Container > ListView.builder > Container > Row > Spacer

class Scene extends StatelessWidget {
  const Scene({super.key});

  @override
  Widget build(BuildContext context) { -- current breadcrumb shows no further--

    return Container(
        child: ListView.builder(
        itemCount: apiData.length,
        itemBuilder: (context, index) {
          return Container(
            padding: EdgeInsets.all(10),
            child: Row(
              children: [
                Image.asset(apiData[index]['icon']),
                Text(apiData[index]['title']),
                const Spacer(------- cursor is here ------),
                Text(apiData[index]['count']),
              ],
            ),
          );
      },
    )); 
  }
}

@allanlaal allanlaal added the enhancement New feature or request label Feb 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant