Skip to main content
Filter by
Sorted by
Tagged with
2 votes
0 answers
71 views

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. ...
ruben2020's user avatar
  • 1,569
0 votes
0 answers
60 views

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 ...
user10488722's user avatar
0 votes
0 answers
36 views

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 ...
Jihoon's user avatar
  • 1
0 votes
0 answers
57 views

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 ...
rusty's user avatar
  • 1,221
0 votes
1 answer
43 views

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 ...
Feyiz Oktay Aydır's user avatar
-1 votes
1 answer
50 views

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-...
Riddhi Dhawan's user avatar
0 votes
1 answer
54 views

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 ...
Henry Davis's user avatar
0 votes
2 answers
50 views

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 ...
woshitom's user avatar
  • 5,169
0 votes
2 answers
162 views

I´m encountering an issue when initializing my terraform. I receive the following error: Error: Failed to query available provider packages │ │ Could not retrieve the list of available versions for ...
Horacio Castro's user avatar
0 votes
1 answer
102 views

I'm facing an issue with accessing my CubitSubject provider in a specific screen. I have a MultiBlocProvider in the root of my app, and I'm trying to access the CubitSubject in the SubjectsView screen....
TAHA HORANE's user avatar
2 votes
1 answer
39 views

I'm new to flutter, and I'm trying to build an application to organize a personal schedule. I have two views, one for the confirmed events and the other for the non-confirmed ones. Using calendar_view,...
Serotan's user avatar
  • 21
0 votes
0 answers
27 views

I'm beginner in flutter and provider. I managed to retrieve a value from a widget to the parent widget with provider. This value is an int. Text( context.watch<EweProvider>().configSouteProvider,...
yoann striedelmeyer's user avatar
1 vote
0 answers
115 views

Two connected questions: Environment.getExternalStorageDirectory().getAbsolutePath() gives me the external storage. But I just noticed that dual apps (You can clone apps for example on Xiaomi) have ...
xCa0z's user avatar
  • 11
1 vote
0 answers
22 views

After login home_page.dart I'm experiencing an error every time I run this app. The variable humanReadableAddress (used for the formatted address in the Google Maps API via geocoder) outputs correctly ...
Abhijit Malakar's user avatar
0 votes
2 answers
42 views

I am building a Flutter app with multiple providers, and I encounter an error when trying to access my SignInProvider from the HomeScreen widget. The error message is: Error: Could not find the ...
Dasun Dola's user avatar
1 vote
0 answers
194 views

I have a Class I use for backend, within which I have a Stream that Streams data from Firebase, as shown below. I need to access the data from a Riverpod Provider to specify the Firebase collection ...
Dan12314's user avatar
  • 127
0 votes
1 answer
80 views

I'm facing an annoying problem about the Provider package. I want to implement the night mode switch. I've tried to use the Provider in a separate screen and it works, but obv where I would need him, ...
Geremia Moretti's user avatar
1 vote
1 answer
38 views

when I use the following code snippet in flutter import 'package:flutter/material.dart'; import 'package:flutter_app/features/note/presentation/screens/note_list.dart'; import 'package:flutter_app/...
Emam Kownine's user avatar
0 votes
1 answer
45 views

I know the more common ways to handle this kind of a thing involve using a ChangeNotifierProvider(CNP), etc., but I want to understand how Provider actually works. If I have a StatelessWidget with a ...
Brian Thompson's user avatar
1 vote
1 answer
113 views

I was trying to use provider for managing the state of TextField Controller and below is the code for the provider I'm using. I want to know why is dispose called! not being printed out to the console ...
Abel's user avatar
  • 77
0 votes
1 answer
264 views

I get this weird problem in Flutter. I'm using 'Provider' for state management, In the helper class everything is fine, I'm sending the request and I receive the response with no problems. The problem ...
Mohammad Radwan's user avatar
0 votes
1 answer
170 views

my problem is very simple that its laughable and i've been losing my mind for the past 6 hours over it. i have a simple notifier with a provider like this class LoginSignUpToggleProvider extends ...
TMoaw's user avatar
  • 11
0 votes
1 answer
107 views

The following is a minimal code to my Android app where I'm trying to show an Admob banner ad at the bottom of my home page. The external packages needed are google_mobile_ads and provider available ...
rusty's user avatar
  • 1,221
1 vote
1 answer
45 views

this is what I'm trying to build here is the code class LogisticsPageScreen extends StatefulWidget { @override _LogisticsPageScreenState createState() => _LogisticsPageScreenState(); } class ...
njogubless's user avatar
1 vote
1 answer
1k views

I'm trying to use the context that I created to a really simple shopping cart example, for that, I created some functions and when I try to use it inside of my component, the error pops up. I'm ...
Davi Sá's user avatar

1
2 3 4 5
36