Comment by Jagaa on Flutter: How to jump to initial page without dynamic...
@pskink yes. i removed that line. but how to jump 2nd page without jumpToPage function.
View ArticleComment by Jagaa on Flutter: How to change biometric authentication messages...
Thanks for reply, but useErrorDialogs shows different dialog. I want to change main bottom sheet dialog's messages.
View ArticleComment by Jagaa on How to stop GIF loop in flutter?
thanks for reply. but this package's latest version is too old.
View ArticleComment by Jagaa on Flutter Android Notification not being Shown
Same here. I received notification but it doesn't show. Is there any solutions?
View ArticleComment by Jagaa on How to create reorderable grid view with custom height in...
Thanks for the answer. In my case, items should have kept their size.
View ArticleComment by Jagaa on Flutter : Not Connecting to IOS Simulator in Android Studio
It's working on iMac M1, macOS Ventura 13.1
View ArticleAnswer by Jagaa for How to keep list view items?
Finally I found the solutionJust use SingleChildScrollView and Column.SingleChildScrollView( child: Column( children: <Widget>[ ... ] ),),
View ArticleHow to keep list view items?
List view recycled items and reload again. I need to keep item details. Is there any widget that can replace list view?I tried column.ListView( children: <Widget>[ caption(context, "Services"),...
View ArticleFlutter: How to change biometric authentication messages in another language?
How to change biometric authentication failed messages. I used flutter local_auth package.I want to translate messages below to another language. I think these messages are coming from system and using...
View ArticleAnswer by Jagaa for How to stop GIF loop in flutter?
Solution- Go to https://ezgif.com/loop-count- Upload gif- Set loop count 1 (0 - infinity)- Change loop count and download gif
View ArticleCan React Native app use Flutter module (3rd party AAR Android)
I want to create 3rd party module for React Native app. The module is written in Flutter.Flutter module (AAR) -> Flutter engine -> Android module (AAR) -> Bridge -> React Native app
View ArticleAnswer by Jagaa for How to disable browser launch when building and running...
Short AnswerOpen the Properties/launchSettings.json file and set "launchBrowser": false. It works for Visual Studio 2019.More DetailsGo to the project locationOpen the Properties/launchSettings.jsonSet...
View ArticleAnswer by Jagaa for Can't install Sharp
In my case, I had to install Python first. After that, it went well.Install Python here.npm i sharpnpm ERR! code 1npm ERR! gyp ERR! find Pythongyp ERR! stack at PythonFinder
View ArticleAnswer by Jagaa for How to open flutter app from any web browser?
Short AnswerYou can't call the deep link URL from the web browser's search bar. First, you need to create an HTML page. Then you can click the link. It will work.More detailsIn my case, I created an...
View ArticleHow to create reorderable grid view with custom height in flutter?
Grid view items should be draggable and with custom heights.Edit: Items should have kept their size.
View ArticleHow to change obscure character of text field in flutter?
I want to use '*' instead of '•' in text field.TextField( focusNode: _passwordFocusNode, controller: _passwordController, obscureText: true,);
View ArticleHow to stop GIF loop in flutter?
How to stop gif loop after 1 time? It is animating forever.Image( color: Colors.red, image: new AssetImage(Icn.splash), width: 150.0,),
View ArticleAnswer by Jagaa for Flutter deep links not working from browser
Short AnswerYou can't call the deep link URL from the web browser's search bar. First, you need to create an HTML page. Then you can click the link. It will work.More detailsIn my case, I created an...
View ArticleCan't call universal link nuxt 2
I'm trying to call the universal link on iOS. But nuxt 2 is handling 404 and redirecting to error.vue page. apple-app-site-association file configured on the web.If there is an app installed then it...
View ArticlePrisma Client could not locate the Query Engine for runtime debian-openssl-3.0.x
The Prisma client works on localhost but not on the production server. How to fix this error? I'm using Webpack and GitLab Runner for deployment. I tried to some other ways but it doesn't fix the...
View Article