Daniel Gah
Daniel Gah
According to the [documentation](https://pub.dev/packages/auto_route#setup-and-usage), you can set up the generated AutoRouter file using a part-of file or not. Generating without a part builder works just fine, while setup using the...
Added missing TabsRouter controller to all exampels
I'm trying to implement the `AutoTabsRouter.pageView` based on the documentation. I don't know why, but the builder (AutoTabsPageViewBuilder) should return a different child each time, but it produces the same...
I'm using the [flutter_inappwebview][1] package to display web content within my app. I've run into an issue where I'm unable to download files from within the webview. When detecting `onDownloadStartRequest`,...
I'm using the flutter_webview_plugin package to show our website as a web view in our Flutter iOS app. The website supports video recording, and everything works fine on the web....
I'm using flutter_cached_pdfview: ^0.4.1. Here is my code: ``` const PDF().cachedFromUrl( widget.fileUrl, placeholder: (progress) => Center( child: SizedBox( width: MediaQuery.of(context).size.width / 2.5, child: LinearProgressIndicator( value: progress / 100, color: Colors.white,...
I want to control when to dismiss the spring animation, and when to run it. The package documentation and the dart API didn't lead me to any conclusion. How do...
I'm using the [sms_autofill][1] package to create an SMS verification page. I use the [PinFieldAutoFill][2] widget to insert the sms code. I want the background color of the widget to...