dart Questions
2
Solved
From a function with multiple parameters can we partially apply just one or two parameters to it returning a new function that takes the remaining parameters?
Javascript example using Ramda
funct...
Younglove asked 22/11, 2018 at 16:4
5
I have a project of a friend where I am supposed to help him. He codes on Mac with an IPhone simulator. Since I have no Mac I want to use an Android simulator which should be no problem if I am inf...
Cranage asked 14/9, 2023 at 14:2
4
I recently started developing on flutter web I created a project with a bdd firebase but every time I send my files to the server and I launch on my browser the site there is an error message in th...
8
[Running] dart "c:\Users\PC\AndroidStudioProjects\FlutterXD\lib\main.dart"
../../Documents/FlutterDev/flutter/packages/flutter/lib/src/material/animated_icons.dart:9:8: Error: Dart librar...
7
Hello guy i'm finding for restrict emoji regex or input formatter for flutter.
i want to disable emoji in textfield if anybody have idea then please help me.
Thanks In Advance.
8
I upgraded the SDK to Flutter version 3.24 yesterday, but today I'm encountering an error when trying to launch the app. I added the new version of Kotlin and changed the kotlin-stdlib-jdk7 version...
1
I'm encountering two issues in my Flutter app when building for iOS:
Cannot find type 'PhoneNumberKit' in scope: I'm getting this error when trying to use the PhoneNumberKit library in my Flu...
3
Solved
I added fvm to my project and set it up like this. Now I can run all the commands for example fvm use x.x.x or fvm flutter pub get. Everything works.
BUT when running the application through VSCode...
Largeminded asked 13/2, 2023 at 22:56
4
I'm using flutter video_player(https://pub.dartlang.org/packages/video_player) plugin to play videos. But When I navigate from one page to another in flutter the video is still playing. I'm having ...
5
Solved
SliverList is a sliver that contains box widgets. Is there a sliver that contains sliver widgets?
I am attempting to nest flutter_sticky_headers to create a timeline, but SliverStickyHeader only a...
Sills asked 9/4, 2020 at 0:55
5
I have a serious issue trying to install flutter... The pub upgrade when you run flutter doctor have being running for the past one hour on my system... I have being stuck with this issue since yes...
6
i was trying to make upload features, so users can upload file into firebase account
in the past, it run well, but yesterday, it wont show the files
there is the code
uploadImage() async {
final s...
Charlotte asked 16/12, 2022 at 15:43
7
I have bound my flutter-iOS app to firebase and i'm also using firebase-messaging and cloud functions for sending notifications via subscribing to topics, i'm using the APNs push notifications key ...
Inkhorn asked 7/9, 2020 at 18:9
2
Solved
I have a case to check the store opening-closed hours.
Im solve this using the code below:
final _openHours = 09;
final _openMinute = 00;
final _closeHours = 15;
final _closeMinute = 00;
var now ...
6
With GoRouter, Is there a way to push the exact same route with a different parameter and make the page reload? I am thinking of something like Navigator.pushReplacement
I am using context.go('/my_...
Darlinedarling asked 22/8, 2022 at 17:30
8
I have a list in which I want to sort based on two values date and the status like this:
pollsList.sort((a, b) => b.active.compareTo(a.active));
pollsList.sort((a, b) {
return b.actualStartDa...
10
I am trying to make my app support localization. I want my app to work in 2 languages: English & Hindi. So i added the following package in my pubspec.yaml:
flutter_localizations:
sdk: flu...
5
Solved
I am using image_picker: ^0.8.4+4 where I am getting this error. what I can do to make this code right?
late File selectedImage;
bool _isLoading = false;
CrudMethods crudMethods = CrudMethods();
F...
Globe asked 9/11, 2021 at 10:0
6
Solved
Flutter app is not showing the status bar(PFA). I don't want a full-screen view of my app.
Is there any way to resolve this issue.
main.dart
class MyApp extends StatelessWidget {
// This widget is...
4
I am coming from languages that don't use semicolons by default and I keep forgetting adding them all the time. Also it's annoying to type ; all the time.
Is there any VS Code plugin that will add ...
Viola asked 9/6, 2021 at 6:52
5
I'm working on Flutter an app which will use Express based REST api. While implementing Cookie based sessions, I wanted to retrieve cookies from app with basic auth request but somehow I can't retr...
4
Solved
I'am trying to add flutter_dotenv in my project. I tried to add the .env file to PROJECTNAME/filename.env and also PROJECTNAME/lib/filename.env. I'm not sure where the root of the project is. Then ...
7
I am using video_thumbnail 0.2.4 package to get thumbnail form video url. If I uploaded video from android device then its working perfect but If I used iPhone device, Always get the error
Missing...
3
Solved
I want to disable all the functionality related to copy, paste and select all on the press of textformfield in the flutter. I have a password field which can take keyboard hint and able to paste da...
3
Solved
I know how to save visible widgets to an image using RepaintBoundary
What I want is a way to save a widget that is not visible to the user as an image.
Upholster asked 6/7, 2019 at 3:55
© 2022 - 2025 — McMap. All rights reserved.