All Questions
2,132 questions
-1
votes
0
answers
43
views
How can you connect the data change from teachers to change the same data for parents?
In classconnect project app How can you connect the data change from teachers to change the same data for parents?
1
vote
1
answer
48
views
flutter native launch page center logo change
The default logo for flutter's native launch page is a square with rounded corners. I'm gonna change it into my own logo. My logo is rectangular, where can I modify it?
I used flutter_native_splash 2....
3
votes
1
answer
61
views
Drift search query in DropdownSearch for Flutter
I'm using the Drift package in my Flutter project, and I need some help with a search feature in a DropdownSearchwidget. I have a table called ingredients defined like this:
class Ingredients extends ...
0
votes
0
answers
43
views
Save login credential in google password manager
In my Flutter Application I want to save the user id and password using the google credential. There may be n-number of user id and password
I want in the login pager after tapping on the username ...
1
vote
2
answers
35
views
Camera setting is permamentlyDenied even in first launch & I can't see my app in ios Settings
I have flutter application and there is some camera & location permissions. Running it in real iOS device (iPhone X ios: 16.7.11) Location permission dialog is appearing but for camera, even in ...
2
votes
0
answers
42
views
Flutter Image Colors issue
When uploading an image using a iOS device on Flutter version 3.27+ the image has this green night vision look on it. Ive tested on different applications and have the same issue when uploading images....
0
votes
1
answer
38
views
How do I get location in a terminated app? [closed]
I have a recovery application. The logic of the app is that if the user is in trouble, he will click a button. Then his location will be sent to the service. I can send the location while the app is ...
1
vote
1
answer
58
views
How to Implement Role-Based Routing in Flutter with JWT Authentication?
I am a beginner in mobile development using Flutter, and I want to set up role-based routing for my app by creating a separate routing file in Dart. My app uses JWT authentication, and the token is ...
0
votes
1
answer
25
views
Testing a view in flutter
Is it ideal to test a view in flutter or is it better to test only the widget since view are generally dependant on a lot of stuff in your project?
I trying to test a login view in flutter to improve ...
0
votes
0
answers
13
views
Is there any way to stream in landscape mode using flutter rtmp_broadcaster package
Am implementing a feature in a flutter app that allows users to stream to online platforms, I am using the package rtmp_broadcaster but I am unable to capture a horizontal video output
SystemChrome....
1
vote
0
answers
42
views
How can I download files on flutter webview
I have an app that displays web content using flutter_inappwebview. I need to download PDF files from the website, but I haven't been able to request permission and download the file successfully. ...
0
votes
1
answer
36
views
Why is my UI not updating in Flutter with MobX @observable variables when using Observer?
I created the following observable variables:
``` @observable
ObservableList<bool> optionsSelecteds = ObservableList<bool>();
@observable
ObservableList<String> ...
0
votes
2
answers
45
views
Flutter setState Not Rebuilding DropdownSearch with Lazy Loading
I am using DropdownSearch with lazy loading inside a modal bottom sheet in Flutter. The list of items is fetched using Bloc (LocationMasterCubit), and I am handling infinite scrolling to load more ...
0
votes
2
answers
32
views
Flutter error - NoSuchMethodErro: '[]' Dynamic call of null Receiver: Instance of 'LinkedSet<Object>'
I'm studying flutter for a personal project and i'm struggling in this error:
NoSuchMethodErro: '[]'
Dynamic call of null
Receiver: Instance of 'LinkedSet<Object>'
Arguments [0]
Here is my ...
0
votes
1
answer
34
views
Provider notifyListeners() is not update Consumers
I am using Provider in my application. I have designed a simple question-answering mechanism. My code suddenly stopped working even though I didn’t change anything. Could it be that I have reached the ...