1,748 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
2
votes
0
answers
76
views
Using OpenSSL provider to delegate TLS_PSK_WITH_NULL_SHA256 key operations to TZ or TPM
I am developing software that uses OpenSSL for implementing a TLS client. I am developing it in the C++ language, to run in Linux for ARM 64-bit.
I intend to use the cipher TLS_PSK_WITH_NULL_SHA256.
...
-1
votes
1
answer
68
views
Why does adding a provider crash android app? [duplicate]
Here is the problem in its minimal version. I have an android app that does nothing except print the sdk version in its onCreate method. I am using the AndroidManifest
<?xml version="1.0" ...
0
votes
0
answers
64
views
In flutter, how to do a partial refresh list?
for example: I have a list, when I modify an item in the list, only the modified item is rebuilt, when I append an item, the list rebuilds the newly added item, not all items in the entire list are ...
0
votes
0
answers
63
views
Is there a solution to not being able to call provider method with notifyListeners within builder?
In Flutter’s provider package, using Consumer widget, within its builder when we call any provider method which makes a call to notifyListeners() we get an exception because we can't request a rebuild ...
0
votes
0
answers
36
views
RuntimeException: Can't create handler inside thread when using Messenger-based Service in ContentProvider
I'm developing an Android app that uses a background Service with Messenger for inter-process communication. This service performs a background test on the device. I packaged it as an .aar and use it ...
0
votes
1
answer
42
views
How to fixing The "--provider" option does not exist. nwidart provider
php artisan vendor:publish --provider="Nwidart\Modules\LaravelModulesServiceProvider"
The "--provider" option does not exist.
0
votes
0
answers
58
views
Unable to rebuild widget because provider's consumer does not trigger rebuild down the widget tree. How to solve this?
My Goal: In the following minimal code, I have MyMainInputWidget and YearInputWidget as input capturing widgets which are required. I don't want to call any provider methods within the YearInputWidget ...
2
votes
1
answer
134
views
flutter_bloc persistent errors
I have been working on an a Flutter app using Flutter_bloc, testing it multiple times per day no problem,
tonight and after performing 'flutter pub upgrade' I got this errors; no matter what I do, the ...
0
votes
1
answer
47
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 ...
1
vote
0
answers
103
views
flutter callback function gives empty list despite passing non empty list in custom widget
In the following codes, I have presented a minimal code (however I could not reproduce the issue in the minimal code). The MyCustomInputWidget provides two callback functions: one for the retrieval of ...
-1
votes
1
answer
53
views
options.providers is not iterable
I have recently started working on my next project and am adding google authentication but receiving error at GET /api/auth/providers .
api/auth/[...nextauth]/route.js
import NextAuth from "next-...
0
votes
0
answers
53
views
Widget with different appearances but same memory
In Flutter/Dart I would like to create a stateful widget that has two different layouts.
That means that the widget can save the current state (e.g. the variables) but that
different return functions ...
0
votes
1
answer
56
views
Flutter ListView not updating despite data list has been updated unless I scrolled all the way to the end
I'm trying to implement this posts-filter functions using Provider in Flutter, the posts has title, timestamp, pfp, and number of likes/comments, my problem is let's say if the user sorted to Oldest ...
0
votes
0
answers
52
views
How do you build a Reusable and Disposable Provider that shares state across widgets in Flutter?
Problem
Im working on a Flutter app where I need a SelectableProvider that accepts a generic type <T>and manages a list of selected items. The provider is used to manage the state between the ...
0
votes
2
answers
53
views
Widget is not refreshed when provider value changes
I have a users Firestore collection where the ids are my users uid.
When a user logs in (with Firebase auth), i'd like to wrap the whole application by the corresponding firestore document.
My code is ...