Jens Horstmann
Jens Horstmann
@dudodv are you using Widgetbook `2.4.1` or `3.0.0-beta`? As @bakeyevrus suggests, I'm assuming this is a `MediaQuery` problem which is fixed in the `3.0.0-beta` version.
Sorry that we haven't been around to solve the problem. I just looked into the problem on our most recent beta version and I cannot longer reproduce the problem. **Screenshot:**...
Since we are currently unable to reproduce the bug I'm closing this issue for now, but please feel free to reopen this issue if you have additional information or if...
I tested this with `widgetbook` `3.0.0-beta.x` and the problem does not occur. While we currently have no updated docs or migration docs for this version, I'll close this issue as...
I'm able to reproduce the problem. However, I don't know what we as the package maintainers can do to help developers with this problem as `useRootNavigation: false` seems to be...
I'm closing this issue since we have introduced the following features in the beta release `widgetbook 3.0.0-beta.x`: - deep linking to allow hot restarting of Widgetbook on Web - addon...
I'm closing this issue as I see it as resolved with the `widgetbook 3.0.0-beta.x` version. However, feel free to reopen if you have additional feedback 😊
As a workaround, I'm using [Custom headings](https://use.docs.page/components/headings#custom-headings) for now.
To answer that question: the `git` package has an interface that allows to run any command by using the `runCommand` method from a `GitDir` instance. Therefore, you could `clone`, `commit`,...
@GibreelAbdullah it looks like this is currently not supported. But you could just use the `Process` class from `dart:io`: ```dart final pr = await Process.run('git', args, workingDirectory: processWorkingDir, runInShell: true);...