en mode débogage, tout semble correct, obtenez une réponse et des listes de données de mon API. Mais après avoir créé app-release.apk et installé sur mon téléphone, il ne montre aucune connexion Internet
voici mon code
ScopedModelDescendant<ReportPosViewModel>(
builder: (context, child, model) {
return FutureBuilder<List<Invoice>>(
future: model.invoices,
builder: (_,
AsyncSnapshot<List<Invoice>> snapshot) {
switch (snapshot.connectionState) {
case ConnectionState.none:
case ConnectionState.active:
case ConnectionState.waiting:
return Center(
child:
const CircularProgressIndicator());
case ConnectionState.done:
if (snapshot.hasData) {
//something todo
} else if (snapshot.hasError) {
return NoInternetConnection(
action: () async {
await model.setInvoice();
await getData();
},
);
}
}
},
);
},
),
ajouter à Android/app/src/main/AndroidManifest.xml après le nom du package